blob: b080b60f8ebe196e8b25f6fdc24831a0938b2954 (
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
|
package com.vaadin.tests.components;
import java.time.LocalDate;
import com.vaadin.ui.DateField;
/**
* @author Vaadin Ltd
*
*/
public class TestDateField extends DateField {
/**
* Constructs an empty <code>DateField</code> with no caption.
*/
public TestDateField() {
}
/**
* Constructs an empty <code>DateField</code> with caption.
*
* @param caption
* the caption of the datefield.
*/
public TestDateField(String caption) {
setCaption(caption);
}
/**
* Constructs a new <code>DateField</code> with the given caption and
* initial text contents.
*
* @param caption
* the caption <code>String</code> for the editor.
* @param value
* the {@link LocalDate} value.
*/
public TestDateField(String caption, LocalDate value) {
setValue(value);
setCaption(caption);
}
}
|