You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2007/06/05 21:19:36 UTC

svn commit: r544601 - /incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/forminput/Multiply.java

Author: ehillenius
Date: Tue Jun  5 12:19:35 2007
New Revision: 544601

URL: http://svn.apache.org/viewvc?view=rev&rev=544601
Log:
added remark

Modified:
    incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/forminput/Multiply.java

Modified: incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/forminput/Multiply.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/forminput/Multiply.java?view=diff&rev=544601&r1=544600&r2=544601
==============================================================================
--- incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/forminput/Multiply.java (original)
+++ incubator/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/forminput/Multiply.java Tue Jun  5 12:19:35 2007
@@ -24,6 +24,12 @@
 /**
  * Displays how a {@link FormComponentPanel} can be used. Needs a model that
  * resolves to an Integer object.
+ * <p>
+ * Note that setting a new model value for this example wouldn't make sense, as
+ * it would mismatch with the lhs and rhs. You would use this component's model
+ * (value) primarily to write the result to some object, without ever directly
+ * setting it in code yourself.
+ * </p>
  * 
  * @author eelcohillenius
  */