1 6 7 package org.netbeans.test.freeformlib; 8 9 13 public class SumNumbers { 14 15 private int x = 0; 16 private int y = 0; 17 18 19 public SumNumbers() { 20 } 21 22 public SumNumbers(int x, int y) { 23 this.x = x; 24 this.y = y; 25 } 26 27 32 public static int sum(int x, int y) { 33 return x + y; 34 } 35 36 39 public int getSum() { 40 return x + y; 41 } 42 43 public int getX() { 44 return x; 45 } 46 public void setX(int x) { 47 this.x = x; 48 } 49 50 public int getY() { 51 return x; 52 } 53 public void setY(int y) { 54 this.y = y; 55 } 56 } 57 | Popular Tags |