1 15 package hivemind.test.rules; 16 17 23 24 public class TruthTeller 25 { 26 private String _name; 27 private boolean _tellsTruth; 28 29 public String getName() 30 { 31 return _name; 32 } 33 34 public boolean getTellsTruth() 35 { 36 return _tellsTruth; 37 } 38 39 public void setName(String string) 40 { 41 _name = string; 42 } 43 44 public void setTellsTruth(boolean b) 45 { 46 _tellsTruth = b; 47 } 48 49 } 50 | Popular Tags |