Created
June 11, 2013 17:07
-
-
Save typekpb/5758691 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author | |
* | |
*/ | |
public class Person { | |
/** | |
* | |
*/ | |
private String firstName; | |
/** | |
* | |
*/ | |
private String middleName; | |
/** | |
* | |
*/ | |
private String surname; | |
/** | |
* @return the firstName | |
*/ | |
public String getFirstName() { | |
return firstName; | |
} | |
/** | |
* @param firstName the firstName to set | |
*/ | |
public void setFirstName(String firstName) { | |
this.firstName = firstName; | |
} | |
/** | |
* @return the middleName | |
*/ | |
public String getMiddleName() { | |
return middleName; | |
} | |
/** | |
* @param middleName the middleName to set | |
*/ | |
public void setMiddleName(String middleName) { | |
this.middleName = middleName; | |
} | |
/** | |
* @return the surname | |
*/ | |
public String getSurname() { | |
return surname; | |
} | |
/** | |
* @param surname the surname to set | |
*/ | |
public void setSurname(String surname) { | |
this.surname = surname; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment