Lines Matching refs:val
44 private boolean val = false;
47 /** Creates a new BooleanValueExp representing the boolean literal <val>.*/
48 BooleanValueExp(boolean val) {
49 this.val = val;
52 /**Creates a new BooleanValueExp representing the Boolean object <val>.*/
53 BooleanValueExp(Boolean val) {
54 this.val = val.booleanValue();
60 return Boolean.valueOf(val);
67 return String.valueOf(val);