blob: 01fcb02b7730522df905ad272491445b4ce7078c (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
|
package com.vaadin.tests.components.abstractfield;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.Property.ValueChangeListener;
import com.vaadin.data.util.ObjectProperty;
import com.vaadin.data.validator.DoubleValidator;
import com.vaadin.data.validator.IntegerValidator;
import com.vaadin.tests.components.TestBase;
import com.vaadin.tests.util.Log;
import com.vaadin.ui.TextField;
public class IntegerDoubleFieldsWithDataSource extends TestBase {
private Log log = new Log(5);
@Override
protected void setup() {
addComponent(log);
TextField tf = createIntegerTextField();
tf.addValidator(new IntegerValidator("Must be an Integer"));
addComponent(tf);
tf = createIntegerTextField();
tf.setCaption("Enter a double");
tf.setPropertyDataSource(new ObjectProperty<Double>(2.1));
tf.addValidator(new DoubleValidator("Must be a Double"));
addComponent(tf);
}
private TextField createIntegerTextField() {
final TextField tf = new TextField("Enter an integer");
tf.setPropertyDataSource(new ObjectProperty<Integer>(new Integer(2)));
tf.setImmediate(true);
tf.addListener(new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
try {
log.log("Value for " + tf.getCaption() + " changed to "
+ tf.getValue());
log.log("Converted value is " + tf.getConvertedValue());
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
}
});
return tf;
}
@Override
protected String getDescription() {
// TODO Auto-generated method stub
return null;
}
@Override
protected Integer getTicketNumber() {
// TODO Auto-generated method stub
return null;
}
}
|