You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2007/04/09 20:31:28 UTC

svn commit: r526867 - /incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/IChainingModel.java

Author: ivaynberg
Date: Mon Apr  9 11:31:27 2007
New Revision: 526867

URL: http://svn.apache.org/viewvc?view=rev&rev=526867
Log:
better method names

Modified:
    incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/IChainingModel.java

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/IChainingModel.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/IChainingModel.java?view=diff&rev=526867&r1=526866&r2=526867
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/IChainingModel.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/IChainingModel.java Mon Apr  9 11:31:27 2007
@@ -40,13 +40,13 @@
 	 * 
 	 * @param model
 	 */
-	public void setChainingModel(IModel model);
+	public void setChainedModel(IModel model);
 	
 	/**
 	 * Returns the chained model if there is a chained model.
 	 * 
 	 * @return The chained model
 	 */
-	public IModel getChainingModel();
+	public IModel getChainedModel();
 	
 }