ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CopyOnWriteArraySet.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CopyOnWriteArraySet.java (file contents):
Revision 1.3 by dl, Sat Jun 7 18:20:20 2003 UTC vs.
Revision 1.4 by dl, Tue Jun 24 14:34:47 2003 UTC

# Line 51 | Line 51 | import java.util.*;
51   *          ((Handler)(it.next()).handle();
52   *    }
53   * }
54 * </pre>
55 * <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>]
54   * @see CopyOnWriteArrayList
55 < **/
55 > * @since 1.5
56 > * @author Doug Lea
57 > */
58   public class CopyOnWriteArraySet<E> extends AbstractSet<E>
59          implements Cloneable, java.io.Serializable {
60  
# Line 70 | Line 70 | public class CopyOnWriteArraySet<E> exte
70      /**
71       * Constructs a set containing all of the elements of the specified
72       * Collection.
73 +     * @param c the collection
74       */
75      public <T extends E> CopyOnWriteArraySet(Collection<T> c) {
76          al = new CopyOnWriteArrayList<E>();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines