blob: 5164601f0dbc8cbca8afe5b9f9ff12947cba24fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.ui;
import java.util.Date;
import com.vaadin.data.Property;
/**
* <p>
* A date entry component, which displays the actual date selector as a popup.
*
* </p>
*
* @see DateField
* @see InlineDateField
* @author IT Mill Ltd.
* @version
* @VERSION@
* @since 5.0
*/
@SuppressWarnings("serial")
public class PopupDateField extends DateField {
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;
}
}
|