Skip to content

Instantly share code, notes, and snippets.

@donnfelker
Created April 15, 2013 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donnfelker/5391243 to your computer and use it in GitHub Desktop.
Save donnfelker/5391243 to your computer and use it in GitHub Desktop.
CustomeObject Exampl
public class Customer {
String firstName;
String lastName;
// 20 Other properties
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
// all the other mutators and accessors
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment