1 25 package classycle.dependency; 26 27 30 public class TextResult implements Result 31 { 32 private final String _text; 33 private final boolean _ok; 34 35 public TextResult(String text) 36 { 37 this(text, true); 38 } 39 40 public TextResult(String text, boolean ok) 41 { 42 _text = text; 43 _ok = ok; 44 } 45 46 public boolean isOk() 47 { 48 return _ok; 49 } 50 51 public String toString() 52 { 53 return _text; 54 } 55 } 56 | Popular Tags |