Package org.zkoss.stateless.sul
Interface IFoot
-
- All Superinterfaces:
IChildable<IFoot,IFooter<IAnyGroup>>,IComponent<IFoot>,IGridComposite<IFoot>,IHtmlBasedComponent<IFoot>,IMeshComposite<IFoot>,IXulElement<IFoot>
public interface IFoot extends IXulElement<IFoot>, IChildable<IFoot,IFooter<IAnyGroup>>, IGridComposite<IFoot>
ImmutableFootcomponent- Author:
- katherine
- See Also:
Foot
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIFoot.BuilderBuilds instances of typeIFoot.static classIFoot.UpdaterBuilds an updater of typeIFootforUiAgent.smartUpdate(Locator, SmartUpdater).
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description default java.lang.StringgetHflex()Return horizontal flex hint of this component.default java.lang.StringgetWidgetClass()Returns the client widget class.default java.lang.StringgetWidth()Returns the width of the component.static IFootof(java.lang.Iterable<? extends IFooter<IAnyGroup>> children)Returns the instance with the given footers which belong to this component.static IFootof(IFooter<IAnyGroup>... children)Returns the instance with the given footers which belong to this component.static IFootofId(java.lang.String id)Returns the instance with the given id.default IFootwithHflex(java.lang.String hflex)default IFootwithWidth(java.lang.String width)-
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, getLeft, getRenderdefer, getSclass, getStyle, getTabindex, getTooltiptext, getTop, getVflex, getZclass, getZIndex, isFocus, withClientAction, withDraggable, withDroppable, withFocus, withHeight, withLeft, withRenderdefer, withSclass, withStyle, withTabindex, withTabindex, withTooltiptext, withTop, withVflex, withZclass, withZIndex
-
Methods inherited from interface org.zkoss.stateless.sul.IXulElement
getContext, getCtrlKeys, getPopup, getTooltip, withContext, withCtrlKeys, withPopup, withTooltip
-
-
-
-
Field Detail
-
DEFAULT
static final IFoot DEFAULT
Constant for default attributes of this immutable component.
-
-
Method Detail
-
getWidgetClass
default java.lang.String getWidgetClass()
Returns the client widget class.Default:
"zul.grid.Foot"- Specified by:
getWidgetClassin interfaceIComponent<IFoot>
-
getWidth
@Derived @Nullable default java.lang.String getWidth()
Description copied from interface:IHtmlBasedComponentReturns the width of the component. If not specified,nullis assumed.Default:
null- Specified by:
getWidthin interfaceIHtmlBasedComponent<IFoot>
-
withWidth
default IFoot withWidth(@Nullable java.lang.String width)
- Specified by:
withWidthin interfaceIHtmlBasedComponent<IFoot>- Parameters:
width- The width of the component.Default:
null- Returns:
- A modified copy of the
thisobject
-
getHflex
@Derived @Nullable default java.lang.String getHflex()
Description copied from interface:IHtmlBasedComponentReturn horizontal flex hint of this component.Default:
null- Specified by:
getHflexin interfaceIHtmlBasedComponent<IFoot>
-
withHflex
default IFoot withHflex(@Nullable java.lang.String hflex)
- Specified by:
withHflexin interfaceIHtmlBasedComponent<IFoot>- Parameters:
hflex- The horizontal flex hint.Default:
null- Returns:
- A modified copy of the
thisobject
-
of
static IFoot of(java.lang.Iterable<? extends IFooter<IAnyGroup>> children)
Returns the instance with the given footers which belong to this component.- Parameters:
children- The footers of the component.
-
of
static IFoot of(IFooter<IAnyGroup>... children)
Returns the instance with the given footers which belong to this component.- Parameters:
children- The footers of the component.
-
ofId
static IFoot ofId(java.lang.String id)
Returns the instance with the given id.- Parameters:
id- The id to identify this component
-
-