]> source.dussan.org Git - vaadin-framework.git/commitdiff
javadocs
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 4 Nov 2010 13:13:45 +0000 (13:13 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 4 Nov 2010 13:13:45 +0000 (13:13 +0000)
svn changeset:15858/svn branch:6.5

src/com/vaadin/ui/PasswordField.java

index 3d8273c917ad7bb6d85394bd5d5e2342beac9b70..0c9da78cd500add8f359fb6a5e34afeace969077 100644 (file)
@@ -11,22 +11,53 @@ import com.vaadin.terminal.gwt.client.ui.VPasswordField;
 @SuppressWarnings("serial")
 public class PasswordField extends TextField {
 
+    /**
+     * Constructs an empty PasswordField.
+     */
     public PasswordField() {
         super();
     }
 
+    /**
+     * Constructs a PasswordField with given property data source.
+     * 
+     * @param dataSource
+     *            the property dato source for the field
+     */
     public PasswordField(Property dataSource) {
         super(dataSource);
     }
 
+    /**
+     * Constructs a PasswordField with given caption and property data source.
+     * 
+     * @param caption
+     *            the caption for the field
+     * @param dataSource
+     *            the property data source for the field
+     */
     public PasswordField(String caption, Property dataSource) {
         super(caption, dataSource);
     }
 
+    /**
+     * Constructs a PasswordField with given value and caption.
+     * 
+     * @param caption
+     *            the caption for the field
+     * @param value
+     *            the value for the field
+     */
     public PasswordField(String caption, String value) {
         super(caption, value);
     }
 
+    /**
+     * Constructs a PasswordField with given caption.
+     * 
+     * @param caption
+     *            the caption for the field
+     */
     public PasswordField(String caption) {
         super(caption);
     }