You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2009/09/15 07:24:32 UTC

svn commit: r814995 - /commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/EmptySetMutator.java

Author: bayard
Date: Tue Sep 15 05:24:32 2009
New Revision: 814995

URL: http://svn.apache.org/viewvc?rev=814995&view=rev
Log:
Generifying in preparation for merge from collections_jdk5_brancH

Modified:
    commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/EmptySetMutator.java

Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/EmptySetMutator.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/EmptySetMutator.java?rev=814995&r1=814994&r2=814995&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/EmptySetMutator.java (original)
+++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/EmptySetMutator.java Tue Sep 15 05:24:32 2009
@@ -17,6 +17,7 @@
 package org.apache.commons.collections.set;
 
 import java.util.Collection;
+import java.util.List;
 import java.util.Set;
 
 import org.apache.commons.collections.collection.CompositeCollection;
@@ -26,30 +27,26 @@
  * the class has to be separate of TestCompositeSet, else the test 
  * class also has to be serialized. 
  */
-class EmptySetMutator implements CompositeSet.SetMutator {
+class EmptySetMutator<E> implements CompositeSet.SetMutator<E> {
     private Set contained;
 
     public EmptySetMutator(Set set) {
         this.contained = set;
     }
 
-    public void resolveCollision(CompositeSet comp, Set existing, 
-        Set added, Collection intersects) {
+    public void resolveCollision(CompositeSet<E> comp, Set<E> existing, Set<E> added, Collection<E> intersects) {
         throw new IllegalArgumentException();
     }
     
-    public boolean add(CompositeCollection composite, 
-        Collection[] collections, Object obj) {
+    public boolean add(CompositeCollection<E> composite, List<Collection<E>> collections, E obj) {
         return contained.add(obj);
     }
     
-    public boolean addAll(CompositeCollection composite, 
-        Collection[] collections, Collection coll) {
+    public boolean addAll(CompositeCollection<E> composite, List<Collection<E>> collections, Collection<? extends E> coll) {
         return contained.addAll(coll);
     }
     
-    public boolean remove(CompositeCollection composite, 
-        Collection[] collections, Object obj) {
+    public boolean remove(CompositeCollection<E> composite, List<Collection<E>> collections, Object obj) {
         return contained.remove(obj);
     }
 }