jdk/src/share/classes/javax/management/BooleanValueExp.java
changeset 21656 d4c777ccb1db
parent 5506 202f599c92aa
child 23010 6dadb192ad81
equal deleted inserted replaced
21655:55f32ae4f920 21656:d4c777ccb1db
    42      * @serial The boolean value
    42      * @serial The boolean value
    43      */
    43      */
    44     private boolean val = false;
    44     private boolean val = false;
    45 
    45 
    46 
    46 
    47     /** Creates a new BooleanValueExp representing the boolean literal <val>.*/
    47     /** Creates a new BooleanValueExp representing the boolean literal {@code val}.*/
    48     BooleanValueExp(boolean val) {
    48     BooleanValueExp(boolean val) {
    49         this.val = val;
    49         this.val = val;
    50     }
    50     }
    51 
    51 
    52     /**Creates a new BooleanValueExp representing the Boolean object <val>.*/
    52     /**Creates a new BooleanValueExp representing the Boolean object {@code val}.*/
    53     BooleanValueExp(Boolean val) {
    53     BooleanValueExp(Boolean val) {
    54         this.val = val.booleanValue();
    54         this.val = val.booleanValue();
    55     }
    55     }
    56 
    56 
    57 
    57