various classpath updates to help SWT build

This commit is contained in:
Joel Dice
2007-08-30 17:31:32 -06:00
parent 8b102783a6
commit a4b4f36c5b
14 changed files with 358 additions and 16 deletions

View File

@ -16,6 +16,10 @@ public final class Boolean {
return (value ? Boolean.TRUE : Boolean.FALSE);
}
public static Boolean valueOf(String s) {
return ("true".equals(s) ? Boolean.TRUE : Boolean.FALSE);
}
public boolean equals(Object o) {
return o instanceof Boolean && ((Boolean) o).value == value;
}