--- jsr166/src/jsr166e/extra/AtomicDouble.java 2011/08/10 01:29:45 1.5 +++ jsr166/src/jsr166e/extra/AtomicDouble.java 2011/10/20 03:08:02 1.8 @@ -31,16 +31,19 @@ import static java.lang.Double.longBitsT * return xBits == yBits; * }} * + * @see jsr166e.DoubleAdder + * @see jsr166e.DoubleMaxUpdater + * * @author Doug Lea * @author Martin Buchholz */ public class AtomicDouble extends Number implements java.io.Serializable { - static final long serialVersionUID = -8405198993435143622L; + private static final long serialVersionUID = -8405198993435143622L; private volatile long value; /** - * Creates a new AtomicDouble with the given initial value. + * Creates a new {@code AtomicDouble} with the given initial value. * * @param initialValue the initial value */ @@ -49,7 +52,7 @@ public class AtomicDouble extends Number } /** - * Creates a new AtomicDouble with initial value {@code 0.0}. + * Creates a new {@code AtomicDouble} with initial value {@code 0.0}. */ public AtomicDouble() { this(0.0); } @@ -241,5 +244,4 @@ public class AtomicDouble extends Number } } } - }