Package org.zkoss.stateless.sul
Interface IFooterElement<I extends IFooterElement>
-
- All Superinterfaces:
IChildrenOfInputgroup<I>,IComponent<I>,IHtmlBasedComponent<I>,ILabelElement<I>,ILabelImageElement<I>,IXulElement<I>
- All Known Subinterfaces:
IFooter<I>,IListfooter<I>,ITreefooter<I>
public interface IFooterElement<I extends IFooterElement> extends ILabelImageElement<I>
A skeletal implementation for a footer.- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.StringgetAlign()Returns the horizontal alignment of this footer.default intgetSpan()Returns number of columns to span this footer.java.lang.StringgetValign()Returns the vertical alignment of this footer.IwithAlign(java.lang.String align)Returns a copy ofthisimmutable component with the specifiedalign.IwithSpan(int span)Returns a copy ofthisimmutable component with the specifiedspan.IwithValign(java.lang.String valign)Returns a copy ofthisimmutable component with the specifiedvalign.-
Methods inherited from interface org.zkoss.stateless.sul.IComponent
getAction, getActions, getClientAttributes, getId, getMold, getWidgetClass, 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.ILabelElement
getLabel, withLabel
-
Methods inherited from interface org.zkoss.stateless.sul.ILabelImageElement
getHoverImage, getIconSclass, getIconSclasses, getIconTooltip, getIconTooltips, getImage, isPreloadImage, withHoverImage, withIconSclass, withIconSclasses, withIconTooltip, withIconTooltips, withImage, withPreloadImage
-
Methods inherited from interface org.zkoss.stateless.sul.IXulElement
getContext, getCtrlKeys, getPopup, getTooltip, withContext, withCtrlKeys, withPopup, withTooltip
-
-
-
-
Method Detail
-
getSpan
default int getSpan()
Returns number of columns to span this footer. Default:1.
-
withSpan
I withSpan(int span)
Returns a copy ofthisimmutable component with the specifiedspan.Sets number of columns to span this footer.
- Parameters:
span- Number of columns to span this footer.Default:
1.- Returns:
- A modified copy of the
thisobject
-
getAlign
@Nullable java.lang.String getAlign()
Returns the horizontal alignment of this footer.Default:
null(system default:"left"unless CSS specified).
-
withAlign
I withAlign(@Nullable java.lang.String align)
Returns a copy ofthisimmutable component with the specifiedalign.Sets the horizontal alignment of this footer.
- Parameters:
align- The horizontal alignment of this footer.Default:
null.- Returns:
- A modified copy of the
thisobject
-
getValign
@Nullable java.lang.String getValign()
Returns the vertical alignment of this footer.Default:
null(system default:"top").
-
withValign
I withValign(@Nullable java.lang.String valign)
Returns a copy ofthisimmutable component with the specifiedvalign.Sets the vertical alignment of this footer.
- Parameters:
valign- The vertical alignment of this footer.Default:
null.- Returns:
- A modified copy of the
thisobject
-
-