1 package junitx.example; 2 3 7 public class PrivateAccessorExample { 8 9 private int intvalue; 10 protected Boolean boolvalue; 11 private static double doublevalue; 12 13 14 public void dummyPMD() { 15 getIntValue(); 16 setIntValue(2); 17 } 18 19 private int getIntValue() { 20 return this.intvalue; 21 } 22 23 private void setIntValue(int value) { 24 this.intvalue = value; 25 } 26 27 protected Boolean getBoolValue() { 28 return this.boolvalue; 29 } 30 31 protected void setBoolValue(Boolean value) { 32 this.boolvalue = value; 33 } 34 35 private static void setDoubleValue(double value) { 36 doublevalue = value; 37 } 38 39 private static double getDoubleValue() { 40 return doublevalue; 41 } 42 43 } 44 | Popular Tags |