1 package test; 2 3 public class GetSet { 4 public static void main(String [] args) { 5 GetSet gs = new GetSet(); 6 gs.setValue1(1); 7 gs.setValue2(2); 8 gs.getValue1(); 9 gs.getValue2(); 10 } 11 12 private int value1; 13 17 public int getValue1() { 18 return this.value1; 19 } 20 24 public void setValue1(int value1) { 25 this.value1 = value1; 26 } 27 private int value2; 28 32 public int getValue2() { 33 return this.value2; 34 } 35 39 public void setValue2(int value2) { 40 this.value2 = value2; 41 } 42 43 } 44 | Popular Tags |