test/tools/javac/synthesize/Double.java

Thu, 07 Jun 2012 20:30:57 -0700

author
erikj
date
Thu, 07 Jun 2012 20:30:57 -0700
changeset 1273
ac29cc95b5c5
parent 0
959103a6100f
permissions
-rw-r--r--

7170079: Adjustments to build-infra makefiles
Reviewed-by: ohair, ohrstrom, ihse, jonas
Contributed-by: jonas <jonas.oreland@oracle.com>, erikj <erik.joelsson@oracle.com>, ihse <magnus.ihse.bursie@oracle.com>, tgranat <torbjorn.granat@oracle.com>, ykantser <yekaterina.kantserova@oracle.com>

     1 package java.lang;
     3 public class Double extends Number
     4 {
     5     public static Double valueOf(double v) {
     6         return new Double(v);
     7     }
     9     public Double(double v) {
    10         value = v;
    11     }
    13     public double doubleValue() {
    14         return value;
    15     }
    17     private double value;
    18 }

mercurial