blob: 37f888946396941ca61845ee7c199e8faf4af93c (
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
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client.ui;
import com.google.gwt.user.client.ui.AbstractImagePrototype;
public interface TreeImages extends com.google.gwt.user.client.ui.TreeImages {
/**
* An image indicating an open branch.
*
* @return a prototype of this image
* @gwt.resource com/vaadin/terminal/gwt/public/default/tree/img/expanded
* .png
*/
AbstractImagePrototype treeOpen();
/**
* An image indicating a closed branch.
*
* @return a prototype of this image
* @gwt.resource com/vaadin/terminal/gwt/public/default/tree/img/collapsed
* .png
*/
AbstractImagePrototype treeClosed();
}
|