Last active
October 17, 2017 13:14
-
-
Save kepocnhh/40d90acae00cf5265f3e13e7ef8f9990 to your computer and use it in GitHub Desktop.
This file contains 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 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