Skip to content

Instantly share code, notes, and snippets.

@ebinjoy999
Created October 8, 2019 13:49
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 ebinjoy999/d44c5adc4dff86f42c49fc8b8dbc1b2e to your computer and use it in GitHub Desktop.
Save ebinjoy999/d44c5adc4dff86f42c49fc8b8dbc1b2e to your computer and use it in GitHub Desktop.
public class Phone {
private Sim sim;
public Sim getSim() {
return sim;
}
public void setSim(Sim sim) {
this.sim = sim;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment