blob: 097024faf384454c956acb419f2fc720f37c1904 (
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
|
package com.vaadin.tests.widgetset.client;
import com.vaadin.shared.AbstractComponentState;
/**
* State class with the same simple name as
* {@link com.vaadin.v7.shared.ui.label.LabelState} to test #8683
*
* @author Vaadin Ltd
* @since 7.0.0
*/
public class LabelState extends AbstractComponentState {
private String text;
public void setText(String text) {
this.text = text;
}
public String getText() {
return text;
}
}
|