Uses of Interface
chrriis.uihierarchy.compatibility.Collection

Packages that use Collection
chrriis.uihierarchy.compatibility Classes that help ensuring compatibility between different Java versions. 
 

Uses of Collection in chrriis.uihierarchy.compatibility
 

Subinterfaces of Collection in chrriis.uihierarchy.compatibility
 interface List
          The interface of the list types of collections.
 interface Set
          The Set compatible version.
 

Classes in chrriis.uihierarchy.compatibility that implement Collection
 class ArrayList
          The arrayList compatible version.
 class HashSet
          The HashSet compatible version.
 

Methods in chrriis.uihierarchy.compatibility with parameters of type Collection
 boolean HashSet.addAll(Collection c)
          Adds all of the elements in the specified collection to this set if they're not already present (optional operation).
 boolean HashSet.removeAll(Collection c)
          Removes all this collection's elements that are also contained in the specified collection (optional operation).
 boolean Collection.removeAll(Collection c)
          Removes all this collection's elements that are also contained in the specified collection (optional operation).
 boolean Collection.addAll(Collection c)
          Adds all of the elements in the specified collection to this set if they're not already present (optional operation).
 boolean ArrayList.addAll(Collection c)
          Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation).
 boolean ArrayList.removeAll(Collection c)
          Removes all this collection's elements that are also contained in the specified collection (optional operation).
 

Constructors in chrriis.uihierarchy.compatibility with parameters of type Collection
ArrayList(Collection c)
          Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.