You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by gs...@apache.org on 2008/04/02 08:39:06 UTC

svn commit: r643758 - in /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload: FileUpload.java FileUploadField.java

Author: gseitz
Date: Tue Apr  1 23:39:03 2008
New Revision: 643758

URL: http://svn.apache.org/viewvc?rev=643758&view=rev
Log:
WICKET-1472: javadoc fixes

Modified:
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUpload.java
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUploadField.java

Modified: wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUpload.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUpload.java?rev=643758&r1=643757&r2=643758&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUpload.java (original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUpload.java Tue Apr  1 23:39:03 2008
@@ -30,7 +30,8 @@
 
 
 /**
- * Model for file uploads.
+ * Model for file uploads. Objects of this class should not be kept between requests, and should
+ * therefore be marked as <code>transient</code> if they become a property of an IModel.
  * 
  * @author Jonathan Locke
  */

Modified: wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUploadField.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUploadField.java?rev=643758&r1=643757&r2=643758&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUploadField.java (original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/upload/FileUploadField.java Tue Apr  1 23:39:03 2008
@@ -28,8 +28,8 @@
 /**
  * Form component that corresponds to a &lt;input type=&quot;file&quot;&gt;. When a FileInput
  * component is nested in a {@link org.apache.wicket.markup.html.form.Form}, that has multipart ==
- * true, its model is updated with the {@link org.apache.wicket.util.upload.FileItem}for this
- * component.
+ * true, its model is updated with the {@link org.apache.wicket.markup.html.form.upload.FileUpload}
+ * for this component.
  * 
  * @author Eelco Hillenius
  */