blob: ee376d4b9ab097ff7cf33d1ded3fdc050f1a51c8 (
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
|
package com.vaadin.tests.tooltip;
import com.vaadin.annotations.JavaScript;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.Button;
public class TooltipAndJavascript extends AbstractReindeerTestUI {
@JavaScript("tooltipandjavascript.js")
public static class MyButton extends Button {
}
@Override
protected void setup(VaadinRequest request) {
MyButton b = new MyButton();
b.setCaption("Hover for tooltip");
b.setDescription("Tooltip for the button");
addComponent(b);
}
@Override
protected String getTestDescription() {
return "Hover the button for a tooltip. It should be styled correctly";
}
@Override
protected Integer getTicketNumber() {
return 14028;
}
}
|