Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Class Test {
  2. private int a;
  3. private int b;
  4. public int getA() {
  5. return a;
  6. }
  7. public void setA(int a) {
  8. this.a = a;
  9. }
  10. public int getB() {
  11. return b;
  12. }
  13. public void setB(int b) {
  14. this.b = b;
  15. }
  16. public Map<String, int> constructChangeDataMap() {
  17. // check what values has been modified and construct the map
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement