ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166e/extra/AtomicDouble.java
(Generate patch)

Comparing jsr166/src/jsr166e/extra/AtomicDouble.java (file contents):
Revision 1.5 by jsr166, Wed Aug 10 01:29:45 2011 UTC vs.
Revision 1.7 by jsr166, Wed Oct 19 23:01:30 2011 UTC

# Line 31 | Line 31 | import static java.lang.Double.longBitsT
31   *   return xBits == yBits;
32   * }}</pre>
33   *
34 + * @see jsr166e.DoubleAdder
35 + * @see jsr166e.DoubleMaxUpdater
36 + *
37   * @author Doug Lea
38   * @author Martin Buchholz
39   */
# Line 40 | Line 43 | public class AtomicDouble extends Number
43      private volatile long value;
44  
45      /**
46 <     * Creates a new AtomicDouble with the given initial value.
46 >     * Creates a new {@code AtomicDouble} with the given initial value.
47       *
48       * @param initialValue the initial value
49       */
# Line 49 | Line 52 | public class AtomicDouble extends Number
52      }
53  
54      /**
55 <     * Creates a new AtomicDouble with initial value {@code 0.0}.
55 >     * Creates a new {@code AtomicDouble} with initial value {@code 0.0}.
56       */
57      public AtomicDouble() { this(0.0); }
58  
# Line 241 | Line 244 | public class AtomicDouble extends Number
244              }
245          }
246      }
244
247   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines