jdk/src/share/classes/javax/management/NumericValueExp.java
changeset 21656 d4c777ccb1db
parent 5506 202f599c92aa
child 23010 6dadb192ad81
equal deleted inserted replaced
21655:55f32ae4f920 21656:d4c777ccb1db
   110      * Basic constructor.
   110      * Basic constructor.
   111      */
   111      */
   112     public NumericValueExp() {
   112     public NumericValueExp() {
   113     }
   113     }
   114 
   114 
   115     /** Creates a new NumericValue representing the numeric literal <val>.*/
   115     /** Creates a new NumericValue representing the numeric literal @{code val}.*/
   116     NumericValueExp(Number val)
   116     NumericValueExp(Number val)
   117     {
   117     {
   118       this.val = val;
   118       this.val = val;
   119     }
   119     }
   120 
   120