Package org.zkoss.stateless.sul
Interface ITabpanel<I extends IAnyGroup>
-
- All Superinterfaces:
IChildable<ITabpanel<I>,I>,IComponent<ITabpanel<I>>,IHtmlBasedComponent<ITabpanel<I>>,IXulElement<ITabpanel<I>>
public interface ITabpanel<I extends IAnyGroup> extends IXulElement<ITabpanel<I>>, IChildable<ITabpanel<I>,I>
ImmutableTabpanelcomponentA tabpanel is the body of a single tab panel. You would place the content for a group of components within a tab panel. The first tabpanel corresponds to the first tab, the second tabpanel corresponds to the second tab and so on.
- Author:
- katherine
- See Also:
Tabpanel
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classITabpanel.Builder<I extends IAnyGroup>Builds instances of typeITabpanel.static classITabpanel.UpdaterBuilds an updater of typeITabpanelforUiAgent.smartUpdate(Locator, SmartUpdater).
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description default java.lang.StringgetWidgetClass()Returns the client widget class.static <I extends IAnyGroup>
ITabpanel<I>of(I... children)Returns the instance with the given any group children.static <I extends IAnyGroup>
ITabpanel<I>of(java.lang.Iterable<? extends I> children)Returns the instance with the given any group children.static <I extends IAnyGroup>
ITabpanel<I>ofId(java.lang.String id)Returns the instance with the given id.-
Methods inherited from interface org.zkoss.stateless.sul.IChildable
getChildren, withChildren, withChildren
-
Methods inherited from interface org.zkoss.stateless.sul.IComponent
getAction, getActions, getClientAttributes, getId, getMold, getWidgetListeners, getWidgetOverrides, isVisible, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withActions, withActions, withClientAttribute, withClientAttributes, withId, withMold, withVisible, withWidgetClass, withWidgetListener, withWidgetListeners, withWidgetOverride, withWidgetOverrides
-
Methods inherited from interface org.zkoss.stateless.sul.IHtmlBasedComponent
getClientAction, getDraggable, getDroppable, getHeight, getHflex, getLeft, getRenderdefer, getSclass, getStyle, getTabindex, getTooltiptext, getTop, getVflex, getWidth, getZclass, getZIndex, isFocus, withClientAction, withDraggable, withDroppable, withFocus, withHeight, withHflex, withLeft, withRenderdefer, withSclass, withStyle, withTabindex, withTabindex, withTooltiptext, withTop, withVflex, withWidth, withZclass, withZIndex
-
Methods inherited from interface org.zkoss.stateless.sul.IXulElement
getContext, getCtrlKeys, getPopup, getTooltip, withContext, withCtrlKeys, withPopup, withTooltip
-
-
-
-
Method Detail
-
getWidgetClass
default java.lang.String getWidgetClass()
Returns the client widget class.Default:
"zul.tab.Tabpanel"- Specified by:
getWidgetClassin interfaceIComponent<I extends IAnyGroup>
-
of
static <I extends IAnyGroup> ITabpanel<I> of(java.lang.Iterable<? extends I> children)
Returns the instance with the given any group children.- Parameters:
children- The children belong to any group- See Also:
IAnyGroup
-
of
static <I extends IAnyGroup> ITabpanel<I> of(I... children)
Returns the instance with the given any group children.- Parameters:
children- The children belong to any group- See Also:
IAnyGroup
-
-