diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-11-04 15:04:30 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-11-04 15:04:30 +0000 |
commit | 5887181f9ea636f2536b9fc0d5679fccb6b76693 (patch) | |
tree | 6553503d95fd5f738c03d691a63e6800ba76f4f8 /src/com/vaadin/ui/PopupDateField.java | |
parent | 8f65f667f2e8f65382f79b30f8063b84a3692d1d (diff) | |
download | vaadin-framework-5887181f9ea636f2536b9fc0d5679fccb6b76693.tar.gz vaadin-framework-5887181f9ea636f2536b9fc0d5679fccb6b76693.zip |
#5865. Removed some non-needed code from widgetset, prepared datefields and button and select for one-to-one mapping
svn changeset:15867/svn branch:6.5
Diffstat (limited to 'src/com/vaadin/ui/PopupDateField.java')
-rw-r--r-- | src/com/vaadin/ui/PopupDateField.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/com/vaadin/ui/PopupDateField.java b/src/com/vaadin/ui/PopupDateField.java index e975cb23d2..7501c9fe15 100644 --- a/src/com/vaadin/ui/PopupDateField.java +++ b/src/com/vaadin/ui/PopupDateField.java @@ -23,34 +23,28 @@ import com.vaadin.terminal.PaintTarget; * @VERSION@
* @since 5.0
*/
-@SuppressWarnings("serial")
public class PopupDateField extends DateField {
private String inputPrompt = null;
public PopupDateField() {
super();
- type = TYPE_POPUP;
}
public PopupDateField(Property dataSource) throws IllegalArgumentException {
super(dataSource);
- type = TYPE_POPUP;
}
public PopupDateField(String caption, Date value) {
super(caption, value);
- type = TYPE_POPUP;
}
public PopupDateField(String caption, Property dataSource) {
super(caption, dataSource);
- type = TYPE_POPUP;
}
public PopupDateField(String caption) {
super(caption);
- type = TYPE_POPUP;
}
@Override
|