Skip to content

Instantly share code, notes, and snippets.

@kepocnhh
Last active October 17, 2017 13:14
Show Gist options
  • Save kepocnhh/40d90acae00cf5265f3e13e7ef8f9990 to your computer and use it in GitHub Desktop.
Save kepocnhh/40d90acae00cf5265f3e13e7ef8f9990 to your computer and use it in GitHub Desktop.
public class UglyObject
{
private int a;
private int b;
public UglyObject(int a, int b)
{
this.a = a;
this.b = b;
}
public int getA()
{
return a;
}
public void setA(int a)
{
this.a = a;
}
public int getB()
{
return b;
}
public void setB(int b)
{
this.b = b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment