blob: 94023db2d06fb888fda423f03faf528f2dbadc70 (
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.nativebutton;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.NativeButton;
public class NativeButtonHtml extends TestBase {
@Override
protected void setup() {
NativeButton b = new NativeButton("<b>Plain text button</b>");
addComponent(b);
b = new NativeButton(
"<span style=\"color: red; font-weight: bold;\">HTML</span> button");
b.setHtmlContentAllowed(true);
addComponent(b);
final NativeButton swapButton = new NativeButton("<i>Swap button<i>");
swapButton.addListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
swapButton.setHtmlContentAllowed(!swapButton
.isHtmlContentAllowed());
}
});
addComponent(swapButton);
}
@Override
protected String getDescription() {
return "Verify that NativeButton HTML rendering works";
}
@Override
protected Integer getTicketNumber() {
// 8663 was for normal button (see ButtonHtml test)
return null;
}
}
|