1 package SnowMailClient.utils; 2 3 public final class CommentedBoolean 4 { 5 6 public boolean value ; 7 public String comment; 8 public CommentedBoolean(boolean value, String comment) 9 { 10 this.value = value; 11 this.comment = comment; 12 } 13 14 public static CommentedBoolean trueC() {return new CommentedBoolean(true,null);} 15 public static CommentedBoolean FalseC() {return new CommentedBoolean(false,null);} 16 public static CommentedBoolean FalseC(String why) {return new CommentedBoolean(false,why);} 18 19 } 20 | Popular Tags |