Skip to content

Instantly share code, notes, and snippets.

@a13-on-git
Created January 14, 2013 16:48
Show Gist options
  • Save a13-on-git/4531442 to your computer and use it in GitHub Desktop.
Save a13-on-git/4531442 to your computer and use it in GitHub Desktop.
public class MyBean_C {
private int n = 123;
public void setN(int n) { this.n = n; }
public int getN() { return n; }
private String s = "test";
public void setS(String s) { this.s = s; }
public String getS() { return s; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment