Uses of Interface
io.github.mmm.ui.api.widget.tab.UiTab
-
-
Uses of UiTab in io.github.mmm.ui.api.widget.tab
Methods in io.github.mmm.ui.api.widget.tab that return UiTab Modifier and Type Method Description default UiTabUiTabPanel. addTab(String text, UiRegularWidget child)Adds the givenUiRegularWidgetas new tab (and the end of all existing tabs).
IMPORTANT: In case youmaketheUiTabclosable, it will remove itself aschildfrom thisUiTabPanelwhen the end-user closes it.UiTabUiTabPanel. addTab(String text, UiRegularWidget child, int index)Adds the givenUiRegularWidgetas new tab at the givenindex.default UiTabUiTabPanel. addTab(String text, Supplier<UiRegularWidget> childSupplier)Adds a new tab (and the end of all existing tabs) with the content provided lazily from the givenSupplier(when the tab is selected for the first time).UiTabUiTabPanel. addTab(String text, Supplier<UiRegularWidget> childSupplier, int index)Adds a new tab at the givenindexwith the content provided lazily from the givenSupplier(when the tab is selected for the first time).Methods in io.github.mmm.ui.api.widget.tab with parameters of type UiTab Modifier and Type Method Description static UiTabPanelUiTabPanel. of(UiTab... children)
-