summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2010-11-04 12:55:41 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2010-11-04 12:55:41 +0000
commit982802cf745f655e5d5ed318904b41732b9c70fb (patch)
tree1ca82dfca886dddd467013b104b9876ca378529f
parent4147afb31e3d0739ee76a66a2ba7fceeaf318386 (diff)
downloadvaadin-framework-982802cf745f655e5d5ed318904b41732b9c70fb.tar.gz
vaadin-framework-982802cf745f655e5d5ed318904b41732b9c70fb.zip
class doc
svn changeset:15857/svn branch:6.5
-rw-r--r--src/com/vaadin/ui/PasswordField.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/PasswordField.java b/src/com/vaadin/ui/PasswordField.java
index 9cd4895f96..3d8273c917 100644
--- a/src/com/vaadin/ui/PasswordField.java
+++ b/src/com/vaadin/ui/PasswordField.java
@@ -3,6 +3,10 @@ package com.vaadin.ui;
import com.vaadin.data.Property;
import com.vaadin.terminal.gwt.client.ui.VPasswordField;
+/**
+ * A field that is used to enter secret text information like passwords. The
+ * clear text is not displayed in the screen.
+ */
@ClientWidget(VPasswordField.class)
@SuppressWarnings("serial")
public class PasswordField extends TextField {