Example usage for Java com.vaadin.ui Panel fields, constructors, methods, implement or subclass
The text is from its open source code.
Panel() Creates a new empty panel. | |
Panel(Component content) Creates a new empty panel which contains the given content. | |
Panel(String caption) Creates a new empty panel with caption. | |
Panel(String caption, Component content) Creates a new empty panel with the given caption and content. |
void | addAction(T action) |
void | addActionHandler(Handler actionHandler) |
Registration | addClickListener(ClickListener listener) Add a click listener to the Panel. |
Registration | addDetachListener(DetachListener listener) |
Registration | addShortcutListener(ShortcutListener shortcut) |
void | addStyleName(String style) |
Component | getContent() |
String | getId() |
boolean | isVisible() |
void | requestRepaintAll() |
void | setCaption(String caption) |
void | setCaptionAsHtml(boolean captionAsHtml) Sets whether the caption is rendered as HTML. |
void | setContent(Component content) Sets the content of this container. |
void | setDescription(String description) Sets the component's description. |
void | setHeight(String height) |
void | setHeight(float height, Unit unit) |
void | setIcon(Resource icon) Sets the component's icon. |
void | setId(String id) |
void | setSizeFull() |
void | setSizeUndefined() |
void | setStyleName(String style) |
void | setVisible(boolean visible) |
void | setWidth(String width) |
void | setWidth(float width, Unit unit) |
void | setWidthUndefined() |