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:34:34 UTC

svn commit: r526868 - in /incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model: AbstractPropertyModel.java CompoundPropertyModel.java

Author: ivaynberg
Date: Mon Apr  9 11:34:32 2007
New Revision: 526868

URL: http://svn.apache.org/viewvc?view=rev&rev=526868
Log:
woops, forgot to commit these two

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

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/AbstractPropertyModel.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/AbstractPropertyModel.java?view=diff&rev=526868&r1=526867&r2=526868
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/AbstractPropertyModel.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/AbstractPropertyModel.java Mon Apr  9 11:34:32 2007
@@ -53,18 +53,18 @@
 	}
 	
 	/**
-	 * @see wicket.model.IChainingModel#getChainingModel()
+	 * @see wicket.model.IChainingModel#getChainedModel()
 	 */
-	public IModel getChainingModel()
+	public IModel getChainedModel()
 	{
 		if (target instanceof IModel) return (IModel)target;
 		return null;
 	}
 	
 	/**
-	 * @see wicket.model.IChainingModel#setChainingModel(wicket.model.IModel)
+	 * @see wicket.model.IChainingModel#setChainedModel(wicket.model.IModel)
 	 */
-	public void setChainingModel(IModel model)
+	public void setChainedModel(IModel model)
 	{
 		target = model;
 	}

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/CompoundPropertyModel.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/CompoundPropertyModel.java?view=diff&rev=526868&r1=526867&r2=526868
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/CompoundPropertyModel.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/model/CompoundPropertyModel.java Mon Apr  9 11:34:32 2007
@@ -78,9 +78,9 @@
 	}
 	
 	/**
-	 * @see wicket.model.IChainingModel#getChainingModel()
+	 * @see wicket.model.IChainingModel#getChainedModel()
 	 */
-	public IModel getChainingModel()
+	public IModel getChainedModel()
 	{
 		if (target instanceof IModel)
 		{
@@ -90,9 +90,9 @@
 	}
 	
 	/**
-	 * @see wicket.model.IChainingModel#setChainingModel(wicket.model.IModel)
+	 * @see wicket.model.IChainingModel#setChainedModel(wicket.model.IModel)
 	 */
-	public void setChainingModel(IModel model)
+	public void setChainedModel(IModel model)
 	{
 		target = model;
 	}