diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractCollection.html jsr-14-public-draft/collections-javadoc/java/util/AbstractCollection.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractCollection.html Thu May 3 18:35:02 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/AbstractCollection.html Wed Mar 27 10:00:53 2002 @@ -165,7 +165,7 @@ - <T> T[] + <T> T[] toArray(T[] a) @@ -183,9 +183,9 @@ - boolean + <T extends E> boolean -addAll(java.util.Collection<E> +addAll(java.util.Collection<T> c)
          Adds all of the elements in the specified collection to this collection (optional operation). @@ -693,7 +693,7 @@

addAll

-
public boolean addAll(java.util.Collection<E> c)
+
public <T extends E> boolean addAll(java.util.Collection<T> c)
Only in jsr-14-public-draft/collections-javadoc/java/util: AbstractCollection.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractList.html jsr-14-public-draft/collections-javadoc/java/util/AbstractList.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractList.html Thu May 3 18:35:02 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/AbstractList.html Wed Mar 27 09:59:52 2002 @@ -183,9 +183,9 @@ - boolean + <T extends A> boolean addAll(int index, - java.util.Collection<A> c) + java.util.Collection<T> c)
          Inserts all of the elements in the specified collection into this list @@ -608,8 +608,8 @@

addAll

-public boolean addAll(int index,
-                      java.util.Collection<A> c)
+public <T extends A> boolean addAll(int index, + java.util.Collection<T> c)
Inserts all of the elements in the specified collection into this list at the specified position (optional operation). Shifts the element Only in jsr-14-public-draft/collections-javadoc/java/util: AbstractList.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractMap.html jsr-14-public-draft/collections-javadoc/java/util/AbstractMap.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractMap.html Thu May 3 18:35:02 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/AbstractMap.html Wed Mar 27 10:06:02 2002 @@ -239,8 +239,8 @@ - void -putAll(java.util.Map<A,B> t) + <K extends A, V extends B> void +putAll(java.util.Map<K,V> t)
          Copies all of the mappings from the specified map to this map @@ -518,7 +518,7 @@

putAll

-public void putAll(java.util.Map<A,B> t)
+public <K extends A, V extends B> void putAll(java.util.Map<K,V> t)
Copies all of the mappings from the specified map to this map (optional operation). These mappings will replace any mappings that Only in jsr-14-public-draft/collections-javadoc/java/util: AbstractMap.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractSequentialList.html jsr-14-public-draft/collections-javadoc/java/util/AbstractSequentialList.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/AbstractSequentialList.html Thu May 3 18:35:03 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/AbstractSequentialList.html Wed Mar 27 10:08:18 2002 @@ -166,9 +166,9 @@ - boolean + <T extends A> boolean addAll(int index, - java.util.Collection<A> c) + java.util.Collection<T> c)
          Inserts all of the elements in in the specified collection into this @@ -407,8 +407,8 @@

addAll

-public boolean addAll(int index,
-                      java.util.Collection<A> c)
+public <T extends A> boolean addAll(int index, + java.util.Collection<T> c)
Inserts all of the elements in in the specified collection into this list at the specified position. Shifts the element currently at that Only in jsr-14-public-draft/collections-javadoc/java/util: AbstractSequentialList.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/ArrayList.html jsr-14-public-draft/collections-javadoc/java/util/ArrayList.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/ArrayList.html Thu May 3 18:35:03 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/ArrayList.html Wed Mar 27 10:15:11 2002 @@ -163,7 +163,8 @@ -ArrayList(java.util.Collection<E> +<T extends E> +ArrayList(java.util.Collection<T> c)
          Constructs a list containing the elements of the specified collection, in the order @@ -211,9 +212,10 @@ - boolean + <T extends E> boolean -addAll(java.util.Collection<E> +addAll(java.util.Collection<T> c)
          Appends all of the elements in the specified Collection to the end of this list, in @@ -221,10 +223,11 @@ - boolean + <T extends E> boolean addAll(int -index, java.util.Collection<E> c) +index, java.util.Collection<T> c)

          Inserts all of the elements in the specified Collection into this list, starting at the specified position. @@ -455,7 +458,7 @@

ArrayList

-
public ArrayList(java.util.Collection<E> c)
+
public <T extends E> ArrayList(java.util.Collection<T> c)
@@ -1100,7 +1103,7 @@

addAll

-
public boolean addAll(java.util.Collection<E> c)
+
public <T extends E> boolean addAll(java.util.Collection<T> c)
@@ -1153,8 +1156,8 @@

addAll

-
public boolean addAll(int index,
-                      java.util.Collection<E> c)
+
public <T extends E> boolean addAll(int index,
+                      java.util.Collection<T> c)
Only in jsr-14-public-draft/collections-javadoc/java/util: ArrayList.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Arrays.html jsr-14-public-draft/collections-javadoc/java/util/Arrays.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/Arrays.html Thu May 3 18:35:03 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/Arrays.html Wed Mar 27 10:51:51 2002 @@ -106,8 +106,7 @@ -static <T extends -Comparable<T>> int +static <T> int binarySearch(T[] a, T key) @@ -144,8 +143,7 @@ -static <T extends -Comparable<T>> void +static <T> void sort(T[] a)
          Sorts the specified @@ -1109,7 +1107,7 @@

sort

-
public static <T extends Comparable<T>> void sort(T[] a)
+
public static <T> void sort(T[] a)
@@ -1631,7 +1629,7 @@

binarySearch

-
public static <T extends Comparable<T>> int binarySearch(T[] a,
+
public static <T> int binarySearch(T[] a,
                                         T key)
Only in jsr-14-public-draft/collections-javadoc/java/util: Arrays.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Collection.html jsr-14-public-draft/collections-javadoc/java/util/Collection.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/Collection.html Thu May 3 18:35:03 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/Collection.html Wed Mar 27 10:19:09 2002 @@ -169,9 +169,10 @@ - boolean + <T extends E> boolean -addAll(java.util.Collection<E> +addAll(java.util.Collection<T> c)
          Adds all of the elements in the specified collection to this collection (optional operation). @@ -558,7 +559,7 @@

addAll

-
public boolean addAll(java.util.Collection<E> c)
+
public <T extends E> boolean addAll(java.util.Collection<T> c)
Only in jsr-14-public-draft/collections-javadoc/java/util: Collection.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Collections.html jsr-14-public-draft/collections-javadoc/java/util/Collections.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/Collections.html Sun Mar 10 05:41:33 2002 +++ jsr-14-public-draft/collections-javadoc/java/util/Collections.html Wed Mar 27 11:17:32 2002 @@ -131,18 +131,18 @@ -static <S,T> -void <S,T extends S> +static <S,T> +void  -copy(java.util.List<S> -dest, java.util.List<T> src) +copy(java.util.List<S> +dest, java.util.List<T> src)
          Copies all of the elements from one list into another. -static <T,S> -java.util.Map +static <T,S> +java.util.Map<T,S> singletonMap(T key, S value) @@ -348,8 +348,8 @@ -static <T extends -Comparable<T>> void +static <T> +void sort(java.util.List<T> list) @@ -472,7 +472,8 @@ -static java.util.Comparator +static <T +extends java.lang.Comparable<T>> java.util.Comparator<T> reverseOrder()
          Returns a comparator @@ -481,7 +482,7 @@ -static <T> java.util.Set +static <T> java.util.Set<T> singleton(T o) @@ -566,7 +567,7 @@

sort

-
public static <T extends Comparable<T>> void sort(java.util.List<T> list)
+
public static <T> void sort(java.util.List<T> list)
@@ -1013,7 +1014,7 @@

<S,T>copy

-
public static <S,T> void copy(java.util.List<S> dest,
+
public static <S,T> void copy(java.util.List<S> dest,
                                    java.util.List<T> src)
@@ -1486,7 +1487,7 @@

unmodifiableCollection

-
public static <T> java.util.Collection<T> unmodifiableCollection(java.util.Collection<T> c)
+
public static <T> java.util.Collection unmodifiableCollection(java.util.Collection<T> c)
@@ -2032,7 +2033,7 @@

singletonMap

-
public static <T,S> java.util.Map singletonMap(T key,
+
public static <T,S> java.util.Map<T,S> singletonMap(T key,
                                                     S value)
@@ -2112,7 +2113,7 @@

reverseOrder

-
public static java.util.Comparator reverseOrder()
+
public static <T extends java.lang.Comparable<T>> java.util.Comparator<T> reverseOrder()
diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Collections.html~ jsr-14-public-draft/collections-javadoc/java/util/Collections.html~ --- jsr-14-public-draft.orig/collections-javadoc/java/util/Collections.html~ Thu May 3 18:35:03 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/Collections.html~ Sun Mar 10 05:41:33 2002 @@ -132,7 +132,7 @@ static <S,T> -void  +void <S,T extends S> copy(java.util.List<S> dest, java.util.List<T> src) @@ -1011,7 +1011,7 @@

-copy

+<S,T>copy
public static <S,T> void copy(java.util.List<S> dest,
                                    java.util.List<T> src)
diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/HashSet.html jsr-14-public-draft/collections-javadoc/java/util/HashSet.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/HashSet.html Thu May 3 18:35:04 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/HashSet.html Wed Mar 27 12:25:27 2002 @@ -145,7 +145,8 @@ default capacity and load factor, which is 0.75. -HashSet(java.util.Collection<E> c) +<T extends E> +HashSet(java.util.Collection<T> c)
          Constructs a new set containing the elements in the specified @@ -310,7 +311,7 @@

HashSet

-public HashSet(java.util.Collection<E> c)
+public <T extends E> HashSet(java.util.Collection<T> c)
Constructs a new set containing the elements in the specified collection. The capacity of the backing HashMap instance is Only in jsr-14-public-draft/collections-javadoc/java/util: HashSet.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Hashtable.html jsr-14-public-draft/collections-javadoc/java/util/Hashtable.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/Hashtable.html Thu May 3 18:35:04 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/Hashtable.html Wed Mar 27 12:39:45 2002 @@ -198,7 +198,8 @@ capacity and the specified load factor. -Hashtable(java.util.Map t) +<K2 extends K, V2 extends V> +Hashtable(java.util.Map<K2, V2> t)
          Constructs a new hashtable with the same mappings as the given @@ -332,8 +333,8 @@ - void -putAll(java.util.Map<K,V> t) + <K2 extends K, V2 extends V> void +putAll(java.util.Map<K2,V2> t)
          Copies all of the mappings from the specified Map to this Hashtable @@ -456,7 +457,7 @@

Hashtable

-public Hashtable(java.util.Map t)
+public <K2 extends K, V2 extends V> Hashtable(java.util.Map<K2, V2> t)
Constructs a new hashtable with the same mappings as the given Map. The hashtable is created with a capacity of twice the number @@ -698,7 +699,7 @@

putAll

-public void putAll(java.util.Map<K,V> t)
+public <K2 extends K, V2 extends V> void putAll(java.util.Map<K2,V2> t)
Copies all of the mappings from the specified Map to this Hashtable These mappings will replace any mappings that this Hashtable had for any Only in jsr-14-public-draft/collections-javadoc/java/util: Hashtable.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/IdentityHashMap.html jsr-14-public-draft/collections-javadoc/java/util/IdentityHashMap.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/IdentityHashMap.html Thu May 3 18:35:04 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/IdentityHashMap.html Wed Mar 27 12:42:45 2002 @@ -200,7 +200,8 @@           Constructs a new, empty map with the specified expected maximum size. -IdentityHashMap(java.util.Map<K,V> m) +<K2 extends K, V2 extends V> +IdentityHashMap(java.util.Map<K2,V2> m)
          Constructs a new identity hash map containing the keys-value mappings @@ -394,7 +395,7 @@

IdentityHashMap

-public IdentityHashMap(java.util.Map<K,V> m)
+public <K2 extends K, V2 extends V> IdentityHashMap(java.util.Map<K2,V2> m)
Constructs a new identity hash map containing the keys-value mappings in the specified map. Only in jsr-14-public-draft/collections-javadoc/java/util: IdentityHashMap.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/LinkedHashMap.html jsr-14-public-draft/collections-javadoc/java/util/LinkedHashMap.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/LinkedHashMap.html Thu May 3 18:35:04 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/LinkedHashMap.html Wed Mar 27 12:46:33 2002 @@ -229,7 +229,8 @@ capacity, load factor and ordering mode. -LinkedHashMap(java.util.Map<K,V> t) +<K2 extends K, V2 extends V> +LinkedHashMap(java.util.Map<K2,V2> t)
          Constructs a new insertion-ordered LinkedHashMap instance with @@ -386,7 +387,7 @@

LinkedHashMap

-public LinkedHashMap(java.util.Map<K,V> t)
+public <K2 extends K, V2 extends V> LinkedHashMap(java.util.Map<K2,V2> t)
Constructs a new insertion-ordered LinkedHashMap instance with the same mappings as the specified map. The LinkedHashMap Only in jsr-14-public-draft/collections-javadoc/java/util: LinkedHashMap.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/LinkedHashSet.html jsr-14-public-draft/collections-javadoc/java/util/LinkedHashSet.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/LinkedHashSet.html Thu May 3 18:35:04 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/LinkedHashSet.html Wed Mar 27 12:48:15 2002 @@ -173,7 +173,8 @@ capacity and load factor (0.75). -LinkedHashSet(java.util.Collection<E> c) +<T extends E> +LinkedHashSet(java.util.Collection<T> c)
          Constructs a new linked hash set with the same elements as the @@ -304,7 +305,7 @@

LinkedHashSet

-public LinkedHashSet(java.util.Collection<E> c)
+public <T extends E> LinkedHashSet(java.util.Collection<T> c)
Constructs a new linked hash set with the same elements as the specified collection. The linked hash set is created with a capacity Only in jsr-14-public-draft/collections-javadoc/java/util: LinkedHashSet.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/LinkedList.html jsr-14-public-draft/collections-javadoc/java/util/LinkedList.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/LinkedList.html Thu May 3 18:35:04 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/LinkedList.html Wed Mar 27 12:53:24 2002 @@ -157,7 +157,8 @@ -LinkedList(java.util.Collection<E> +<T extends E> +LinkedList(java.util.Collection<T> c)
          Constructs a list containing the elements of the specified collection, in the order @@ -198,9 +199,9 @@ - boolean + <T extends E> boolean -addAll(java.util.Collection<E> +addAll(java.util.Collection<T> c)
          Appends all of the elements in the specified collection to the end of this list, in @@ -208,10 +209,10 @@ - boolean + <T extends E> boolean addAll(int -index, java.util.Collection<E> c) +index, java.util.Collection<T> c)

          Inserts all of the elements in the specified collection into this list, starting at the specified position. @@ -455,7 +456,7 @@

LinkedList

-
public LinkedList(java.util.Collection<E> c)
+
public <T extends E> LinkedList(java.util.Collection<T> c)
@@ -779,7 +780,7 @@

addAll

-
public boolean addAll(java.util.Collection<E> c)
+
public boolean <T extends E> addAll(java.util.Collection<T> c)
@@ -825,8 +826,8 @@

addAll

-
public boolean addAll(int index,
-                      java.util.Collection<E> c)
+
public boolean <T extends E> addAll(int index,
+                      java.util.Collection<T> c)
Only in jsr-14-public-draft/collections-javadoc/java/util: LinkedList.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/List.html jsr-14-public-draft/collections-javadoc/java/util/List.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/List.html Thu May 3 18:35:04 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/List.html Wed Mar 27 12:55:58 2002 @@ -195,9 +195,9 @@ - boolean + <T extends E> boolean -addAll(java.util.Collection<E> +addAll(java.util.Collection<T> c)
          Appends all of the elements in the specified collection to the end of this list, in @@ -206,10 +206,10 @@ - boolean + <T extends E> boolean addAll(int -index, java.util.Collection<E> c) +index, java.util.Collection<T> c)

          Inserts all of the elements in the specified collection into this list at the specified position (optional operation). @@ -717,7 +717,7 @@

addAll

-
public boolean addAll(java.util.Collection<E> c)
+
public boolean <T extends E> addAll(java.util.Collection<T> c)
@@ -777,8 +777,8 @@

addAll

-
public boolean addAll(int index,
-                      java.util.Collection<E> c)
+
public boolean <T extends E> addAll(int index,
+                      java.util.Collection<T> c)
Only in jsr-14-public-draft/collections-javadoc/java/util: List.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Map.html jsr-14-public-draft/collections-javadoc/java/util/Map.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/Map.html Thu May 3 18:35:05 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/Map.html Wed Mar 27 12:59:09 2002 @@ -228,8 +228,8 @@ - void -putAll(java.util.Map<K,V> t) + <K2 extends K, V2 extends V> void +putAll(java.util.Map<K2,V2> t)
          Copies all of the mappings from the specified map to this map @@ -412,7 +412,7 @@

putAll

-public void putAll(java.util.Map<K,V> t)
+public void <K2 extends K, V2 extends V> putAll(java.util.Map<K2,V2> t)
Copies all of the mappings from the specified map to this map (optional operation). These mappings will replace any mappings that Only in jsr-14-public-draft/collections-javadoc/java/util: Map.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Set.html jsr-14-public-draft/collections-javadoc/java/util/Set.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/Set.html Thu May 3 18:35:05 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/Set.html Wed Mar 27 13:01:32 2002 @@ -176,9 +176,10 @@ - boolean + <T +extends E> boolean -addAll(java.util.Collection<E> +addAll(java.util.Collection<T> c)
          Adds all of the elements in the specified collection to this set if they're not already @@ -609,7 +610,7 @@

addAll

-
public boolean addAll(java.util.Collection<E> c)
+
public boolean <T extends E> addAll(java.util.Collection<T> c)
Only in jsr-14-public-draft/collections-javadoc/java/util: Set.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/TreeMap.html jsr-14-public-draft/collections-javadoc/java/util/TreeMap.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/TreeMap.html Thu May 3 18:35:05 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/TreeMap.html Wed Mar 27 13:07:21 2002 @@ -167,14 +167,16 @@           Constructs a new, empty map, sorted according to the given comparator. -TreeMap(java.util.Map<K,V> m) +<K2 extends K, V2 extends V> +TreeMap(java.util.Map<K2,V2> m)
          Constructs a new map containing the same mappings as the given map, sorted according to the keys' natural order. -TreeMap(java.util.SortedMap<K,V> m) +<K2 extends K, V2 extends V> +TreeMap(java.util.SortedMap<K2,V2> m)
          Constructs a new map containing the same mappings as the given @@ -293,8 +295,8 @@ - void -putAll(java.util.Map<K,V> map) + <K2 extends K, V2 extends V> void +putAll(java.util.Map<K2,V2> map)
          Copies all of the mappings from the specified map to this map. @@ -431,7 +433,7 @@

TreeMap

-public TreeMap(java.util.Map<K,V> m)
+public <K2 extends K, V2 extends V> TreeMap(java.util.Map<K2,V2> m)
Constructs a new map containing the same mappings as the given map, sorted according to the keys' natural order. All keys inserted @@ -451,7 +453,7 @@

TreeMap

-public TreeMap(java.util.SortedMap<K,V> m)
+public <K2 extends K, V2 extends V> TreeMap(java.util.SortedMap<K2,V2> m)
Constructs a new map containing the same mappings as the given SortedMap, sorted according to the same ordering. This method @@ -610,7 +612,7 @@

putAll

-public void putAll(java.util.Map<K,V> map)
+public <K2 extends K, V2 extends V> void putAll(java.util.Map<K2,V2> map)
Copies all of the mappings from the specified map to this map. These mappings replace any mappings that this map had for any of the keys Only in jsr-14-public-draft/collections-javadoc/java/util: TreeMap.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/TreeSet.html jsr-14-public-draft/collections-javadoc/java/util/TreeSet.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/TreeSet.html Thu May 3 18:35:05 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/TreeSet.html Wed Mar 27 13:10:33 2002 @@ -147,7 +147,8 @@ order. -TreeSet(java.util.Collection<E> c) +<T extends E> +TreeSet(java.util.Collection<T> c)
          Constructs a new set containing the elements in the specified @@ -160,7 +161,8 @@           Constructs a new, empty set, sorted according to the given comparator. -TreeSet(java.util.SortedSet<E> s) +<T extends E> +TreeSet(java.util.SortedSet<T> s)
          Constructs a new set containing the same elements as the given sorted @@ -186,8 +188,8 @@ - boolean -addAll(java.util.Collection<E> c) + <T extends E> boolean +addAll(java.util.Collection<T> c)
          Adds all of the elements in the specified collection to this set. @@ -399,7 +401,7 @@

TreeSet

-public TreeSet(java.util.Collection<E> c)
+public <T extends E> TreeSet(java.util.Collection<T> c)
Constructs a new set containing the elements in the specified collection, sorted according to the elements' natural order. @@ -419,7 +421,7 @@

TreeSet

-public TreeSet(java.util.SortedSet<E> s)
+public <T extends E> TreeSet(java.util.SortedSet<T> s)
Constructs a new set containing the same elements as the given sorted set, sorted according to the same ordering. @@ -561,7 +563,7 @@

addAll

-public boolean addAll(java.util.Collection<E> c)
+public boolean <T extends E> addAll(java.util.Collection<T> c)
Adds all of the elements in the specified collection to this set.

Only in jsr-14-public-draft/collections-javadoc/java/util: TreeSet.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/Vector.html jsr-14-public-draft/collections-javadoc/java/util/Vector.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/Vector.html Thu May 3 18:35:05 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/Vector.html Wed Mar 27 13:16:49 2002 @@ -188,7 +188,8 @@ -Vector(java.util.Collection<E> +<T extends E> +Vector(java.util.Collection<T> c)
          Constructs a vector containing the elements of the specified collection, in the order @@ -270,9 +271,9 @@ - boolean + <T extends E> boolean -addAll(java.util.Collection<E> +addAll(java.util.Collection<T> c)
          Appends all of the elements in the specified Collection to the end of this Vector, @@ -280,10 +281,10 @@ - boolean + <T extends E> boolean addAll(int -index, java.util.Collection<E> c) +index, java.util.Collection<T> c)

          Inserts all of the elements in in the specified Collection into this Vector at the specified position. @@ -750,7 +751,7 @@

Vector

-
public Vector(java.util.Collection<E> c)
+
public <T extends E> Vector(java.util.Collection<T> c)
@@ -2017,7 +2018,7 @@

addAll

-
public boolean addAll(java.util.Collection<E> c)
+
public boolean <T extends E> addAll(java.util.Collection<T> c)
@@ -2161,8 +2162,8 @@

addAll

-
public boolean addAll(int index,
-                      java.util.Collection<E> c)
+
public <T extends E> boolean addAll(int index,
+                      java.util.Collection<T> c)
Only in jsr-14-public-draft/collections-javadoc/java/util: Vector.html~ diff -ru jsr-14-public-draft.orig/collections-javadoc/java/util/WeakHashMap.html jsr-14-public-draft/collections-javadoc/java/util/WeakHashMap.html --- jsr-14-public-draft.orig/collections-javadoc/java/util/WeakHashMap.html Thu May 3 18:35:05 2001 +++ jsr-14-public-draft/collections-javadoc/java/util/WeakHashMap.html Wed Mar 27 13:21:23 2002 @@ -189,7 +189,8 @@ initial capacity and the given load factor. -WeakHashMap(java.util.Map<K,V> t) +<K2 extends K, V2 extends V> +WeakHashMap(java.util.Map<K2,V2> t)
          Constructs a new WeakHashMap with the same mappings as the @@ -367,7 +368,7 @@

WeakHashMap

-public WeakHashMap(java.util.Map<K,V> t)
+public <K2 extends K, V2 extends V> WeakHashMap(java.util.Map<K2,V2> t)
Constructs a new WeakHashMap with the same mappings as the specified Map. The WeakHashMap is created with an Only in jsr-14-public-draft/collections-javadoc/java/util: WeakHashMap.html~ diff -ru jsr-14-public-draft.orig/reflection-javadoc/java/lang/reflect/ClassTypeVariable.html jsr-14-public-draft/reflection-javadoc/java/lang/reflect/ClassTypeVariable.html --- jsr-14-public-draft.orig/reflection-javadoc/java/lang/reflect/ClassTypeVariable.html Thu May 3 18:35:00 2001 +++ jsr-14-public-draft/reflection-javadoc/java/lang/reflect/ClassTypeVariable.html Wed Mar 27 06:33:37 2002 @@ -66,11 +66,11 @@ The ClassTypeVariable interface represents a type variable declared as a formal parameter to a generic class or interface. - Example: A in Collection\. + Example: A in Collection<A>. Note that implementations of this interface are free to return distinct objects for the same type variable; the identity of - an objects implementing this interface may not be used to test for identity + objects implementing this interface may not be used to test for identity among the type variables they represent.


Only in jsr-14-public-draft/reflection-javadoc/java/lang/reflect: ClassTypeVariable.html~ diff -ru jsr-14-public-draft.orig/reflection-javadoc/java/lang/reflect/MethodTypeVariable.html jsr-14-public-draft/reflection-javadoc/java/lang/reflect/MethodTypeVariable.html --- jsr-14-public-draft.orig/reflection-javadoc/java/lang/reflect/MethodTypeVariable.html Thu May 3 18:35:01 2001 +++ jsr-14-public-draft/reflection-javadoc/java/lang/reflect/MethodTypeVariable.html Wed Mar 27 06:38:52 2002 @@ -63,14 +63,14 @@
public interface MethodTypeVariable
extends TypeVariable

-The ClassTypeVariable interface represents a type variable - declared as a formal parameter to a generic class or interface. +The MethodTypeVariable interface represents a type variable + declared as a formal parameter to a generic method. - Example: A in Collection\. + Example: A in Collection<A>. Note that implementations of this interface are free to return distinct objects for the same type variable; the identity of - an objects implementing this interface may not be used to test for identity + objects implementing this interface may not be used to test for identity among the type variables they represent.


Only in jsr-14-public-draft/reflection-javadoc/java/lang/reflect: MethodTypeVariable.html~ diff -ru jsr-14-public-draft.orig/reflection-javadoc/java/lang/reflect/TypeVariable.html jsr-14-public-draft/reflection-javadoc/java/lang/reflect/TypeVariable.html --- jsr-14-public-draft.orig/reflection-javadoc/java/lang/reflect/TypeVariable.html Thu May 3 18:35:00 2001 +++ jsr-14-public-draft/reflection-javadoc/java/lang/reflect/TypeVariable.html Wed Mar 27 06:33:15 2002 @@ -69,7 +69,7 @@ The TypeVariable interface represents a type variable declared as a formal parameter to a generic class, interface or method. - Example: A in Collection<A>. + Example: A in Collection<A>. This interface embodies commonality among all type variables. Every actual type variable supports one of the two subinterfaces @@ -77,7 +77,7 @@ Note that implementations of this interface are free to return distinct objects for the same type variable; the identity of - an objects implementing this interface may not be used to test for identity + objects implementing this interface may not be used to test for identity among the type variables they represent.


Only in jsr-14-public-draft/reflection-javadoc/java/lang/reflect: TypeVariable.html~