Skip to content

Instantly share code, notes, and snippets.

@CN-Maxye
Last active December 17, 2015 03:18
Show Gist options
  • Save CN-Maxye/5541781 to your computer and use it in GitHub Desktop.
Save CN-Maxye/5541781 to your computer and use it in GitHub Desktop.
public class Demo {
private String name;
private String sex;
private Integer age;
private Double height;
public String getName(){
return this.name;
}
public void setName(String name){
this.name=name;
}
public String getSex(){
return this.sex;
}
public void setSex(String sex){
this.sex=sex;
}
public Integer getAge(){
return this.age;
}
public void setAge(Integer age){
this.age=age;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment