1 16 17 package org.springframework.beans; 18 19 23 public class BooleanTestBean { 24 25 private boolean bool1; 26 27 private Boolean bool2; 28 29 public boolean isBool1() { 30 return bool1; 31 } 32 33 public void setBool1(boolean bool1) { 34 this.bool1 = bool1; 35 } 36 37 public Boolean getBool2() { 38 return bool2; 39 } 40 41 public void setBool2(Boolean bool2) { 42 this.bool2 = bool2; 43 } 44 45 } 46 | Popular Tags |