Skip to content

Instantly share code, notes, and snippets.

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