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.8 by jsr166, Thu Oct 20 03:08:02 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   */
40   public class AtomicDouble extends Number implements java.io.Serializable {
41 <    static final long serialVersionUID = -8405198993435143622L;
41 >    private static final long serialVersionUID = -8405198993435143622L;
42  
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