blob: 78d6dfb13f774d58d876b708c91d69cecdeffa65 (
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
|
package com.vaadin.tests.components.window;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.Label;
import com.vaadin.ui.Window;
/**
* Test to demonstrate that tooltips are shown for both Window header and
* content
*
* @author Vaadin Ltd
*/
public class ToolTipInWindow extends AbstractReindeerTestUI {
Window window;
@Override
protected void setup(VaadinRequest request) {
window = new Window("Caption", new Label("A label content"));
window.setPositionX(300);
window.setPositionY(200);
window.setWidth("200px");
window.setHeight("200px");
window.setDescription("Tooltip");
addWindow(window);
}
}
|