Example usage for Java com.vaadin.ui ComponentContainer fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addComponent(Component c) Adds the component into this container. |
void | addStyleName(String style) Adds one or more style names to this component. |
String | getCaption() Gets the caption of the component. |
int | getComponentCount() Gets the number of children this ComponentContainer has. |
Iterator | getComponentIterator() Gets an iterator to the collection of contained components. |
HasComponents | getParent() Gets the parent component of the component. |
Iterator | iterator() Gets an iterator to the collection of contained components. |
void | removeAllComponents() Removes all components from this container. |
void | removeComponent(Component c) Removes the component from this container. |
void | replaceComponent(Component oldComponent, Component newComponent) Replaces the component in the container with another one without changing position. |
void | setCaption(String caption) Sets the caption of the component. |
void | setHeight(String height) Sets the height of the component using String presentation. |
void | setSizeFull() Sets the size to 100% x 100%. |
void | setSizeUndefined() Clears any size settings. |
void | setVisible(boolean visible) Sets the visibility of the component. |
void | setWidth(String width) Sets the width of the component using String presentation. |
void | setWidthUndefined() Clears any defined width. |