You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by kn...@apache.org on 2008/08/28 15:56:45 UTC

svn commit: r689823 - /wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/wicket/ajaxng/FunctionList.java

Author: knopp
Date: Thu Aug 28 06:56:44 2008
New Revision: 689823

URL: http://svn.apache.org/viewvc?rev=689823&view=rev
Log:
fix return types

Modified:
    wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/wicket/ajaxng/FunctionList.java

Modified: wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/wicket/ajaxng/FunctionList.java
URL: http://svn.apache.org/viewvc/wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/wicket/ajaxng/FunctionList.java?rev=689823&r1=689822&r2=689823&view=diff
==============================================================================
--- wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/wicket/ajaxng/FunctionList.java (original)
+++ wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/wicket/ajaxng/FunctionList.java Thu Aug 28 06:56:44 2008
@@ -16,6 +16,7 @@
  */
 package org.apache.wicket.ajaxng;
 
+import java.util.Collection;
 import java.util.List;
 
 /**
@@ -44,4 +45,57 @@
 		super(list);
 	}
 
+	@Override
+	public FunctionList add(int index, Object element)
+	{
+		return (FunctionList)super.add(index, element);
+	}
+
+	@Override
+	public FunctionList add(Object o)
+	{
+		return (FunctionList)super.add(o);
+	}
+
+	@Override
+	public FunctionList addAll(Collection<? extends Object> c)
+	{
+		return (FunctionList)super.addAll(c);
+	}
+
+	@Override
+	public FunctionList addAll(int index, Collection<? extends Object> c)
+	{
+		return (FunctionList)super.addAll(index, c);
+	}
+
+	@Override
+	public FunctionList clear()
+	{
+		return (FunctionList)super.clear();
+	}
+
+	@Override
+	public FunctionList remove(int index)
+	{
+		return (FunctionList)super.remove(index);
+	}
+
+	@Override
+	public FunctionList remove(Object o)
+	{
+		return (FunctionList)super.remove(o);
+	}
+
+	@Override
+	public FunctionList removeAll(Collection<?> c)
+	{
+		return (FunctionList)super.removeAll(c);
+	}
+
+	@Override
+	public FunctionList set(int index, Object element)
+	{
+		return (FunctionList)super.set(index, element);
+	}
 }