Created
June 11, 2013 17:08
-
-
Save typekpb/5758703 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
// TODO: Auto-generated Javadoc | |
/** | |
* The Class Person. | |
*/ | |
public class Person { | |
/** The first name. */ | |
private String firstName; | |
/** The middle name. */ | |
private String middleName; | |
/** The surname. */ | |
private String surname; | |
/** | |
* Gets the first name. | |
* | |
* @return the first name | |
*/ | |
public String getFirstName() { | |
return firstName; | |
} | |
/** | |
* Sets the first name. | |
* | |
* @param firstName the new first name | |
*/ | |
public void setFirstName(String firstName) { | |
this.firstName = firstName; | |
} | |
/** | |
* Gets the middle name. | |
* | |
* @return the middle name | |
*/ | |
public String getMiddleName() { | |
return middleName; | |
} | |
/** | |
* Sets the middle name. | |
* | |
* @param middleName the new middle name | |
*/ | |
public void setMiddleName(String middleName) { | |
this.middleName = middleName; | |
} | |
/** | |
* Gets the surname. | |
* | |
* @return the surname | |
*/ | |
public String getSurname() { | |
return surname; | |
} | |
/** | |
* Sets the surname. | |
* | |
* @param surname the new surname | |
*/ | |
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