Skip to content

Instantly share code, notes, and snippets.

@ivanisidrowu
Created October 29, 2015 09:23
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 ivanisidrowu/28b4c6c54fdf85e5ff5d to your computer and use it in GitHub Desktop.
Save ivanisidrowu/28b4c6c54fdf85e5ff5d to your computer and use it in GitHub Desktop.
public class Phone {
private String name;
public Phone(){
}
public Phone(String name){
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment