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.String
getAlign()
Returns the horizontal alignment of this footer.default int
getSpan()
Returns number of columns to span this footer.java.lang.String
getValign()
Returns the vertical alignment of this footer.I
withAlign(java.lang.String align)
Returns a copy ofthis
immutable component with the specifiedalign
.I
withSpan(int span)
Returns a copy ofthis
immutable component with the specifiedspan
.I
withValign(java.lang.String valign)
Returns a copy ofthis
immutable 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 ofthis
immutable 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
this
object
-
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 ofthis
immutable 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
this
object
-
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 ofthis
immutable 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
this
object
-
-