Skip to content

Instantly share code, notes, and snippets.

@mohnish
Created October 22, 2012 22:54
Show Gist options
  • Save mohnish/3935250 to your computer and use it in GitHub Desktop.
Save mohnish/3935250 to your computer and use it in GitHub Desktop.
Getters/Setters Java
class Test {
private int count;
public Test() {
super();
this.count = 10;
}
public int getCount() {
return this.count;
}
public void setCount(value) {
this.count = value.trim();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment