Interface UiElementContainer
-
- All Known Implementing Classes:
ComponentGridLayout
,ComponentHorizontalLayout
,ComponentSubform
,ComponentVerticalLayout
public interface UiElementContainer
A UI element container is a UI element that contains UI elements.- Author:
- Johny Andres Ortega Ruiz <johny.ortega@kuwaiba.org>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addChildren(AbstractUiElement child)
Adds a UI element.List<AbstractUiElement<? extends AbstractElement,? extends com.vaadin.flow.component.Component>>
getChildren()
Gets children.void
repaint()
Repaints the UI element container.
-
-
-
Method Detail
-
addChildren
void addChildren(AbstractUiElement child)
Adds a UI element.- Parameters:
child
- UI element child.
-
getChildren
List<AbstractUiElement<? extends AbstractElement,? extends com.vaadin.flow.component.Component>> getChildren()
Gets children.- Returns:
- The UI element container children.
-
repaint
void repaint()
Repaints the UI element container.
-
-