Skip to content

Instantly share code, notes, and snippets.

@typekpb
Created June 11, 2013 17:08
Show Gist options
  • Save typekpb/5758703 to your computer and use it in GitHub Desktop.
Save typekpb/5758703 to your computer and use it in GitHub Desktop.
// 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