Created
January 14, 2013 16:48
-
-
Save a13-on-git/4531442 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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