Package org.zkoss.stateless.sul
Interface ILinelayout
-
- All Superinterfaces:
IAnyGroup<ILinelayout>,IChildable<ILinelayout,ILineitem<IAnyGroup>>,IComponent<ILinelayout>,IHtmlBasedComponent<ILinelayout>,IXulElement<ILinelayout>
public interface ILinelayout extends IXulElement<ILinelayout>, IChildable<ILinelayout,ILineitem<IAnyGroup>>, IAnyGroup<ILinelayout>
ImmutableLinelayoutcomponentA linelayout component for stylistically displaying chronological information.
- Author:
- katherine
- See Also:
Linelayout
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classILinelayout.BuilderBuilds instances of typeILinelayout.static classILinelayout.OrientSpecifies the orient ofICardlayoutcomponentstatic classILinelayout.UpdaterBuilds an updater of typeILinelayoutforUiAgent.smartUpdate(Locator, SmartUpdater).
-
Field Summary
Fields Modifier and Type Field Description static ILinelayoutDEFAULTConstant for default attributes of this immutable component.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default intgetFirstScale()Returns the scale of space occupied by the first area.default intgetLastScale()Returns the scale of space occupied by the last area.java.lang.StringgetLineStyle()Returns the CSS style for the line.default java.lang.StringgetOrient()Returns the orient.default java.lang.StringgetWidgetClass()Returns the client widget class.static ILinelayoutof(java.lang.Iterable<? extends ILineitem<IAnyGroup>> children)Returns the instance with the givenILineitemchildren.static ILinelayoutof(ILineitem<IAnyGroup>... children)Returns the instance with the givenILineitemchildren.static ILinelayoutofId(java.lang.String id)Returns the instance with the given id.static ILinelayoutofOrient(ILinelayout.Orient orient)Returns the instance with the given orient.ILinelayoutwithFirstScale(int firstScale)Returns a copy ofthisimmutable component with the specifiedfirstScale.ILinelayoutwithLastScale(int lastScale)Returns a copy ofthisimmutable component with the specifiedlastScale.ILinelayoutwithLineStyle(java.lang.String lineStyle)Returns a copy ofthisimmutable component with the specifiedlineStyle.ILinelayoutwithOrient(java.lang.String orient)Returns a copy ofthisimmutable component with the specifiedorient.default ILinelayoutwithOrient(ILinelayout.Orient orient)Returns a copy ofthisimmutable component with the specifiedorient.-
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
-
-
-
-
Field Detail
-
DEFAULT
static final ILinelayout DEFAULT
Constant for default attributes of this immutable component.
-
-
Method Detail
-
getWidgetClass
default java.lang.String getWidgetClass()
Returns the client widget class.Default:
"zkmax.layout.Linelayout"- Specified by:
getWidgetClassin interfaceIComponent<ILinelayout>
-
getLineStyle
@Nullable java.lang.String getLineStyle()
Returns the CSS style for the line.Default:
null
-
withLineStyle
ILinelayout withLineStyle(@Nullable java.lang.String lineStyle)
Returns a copy ofthisimmutable component with the specifiedlineStyle.Sets the CSS style for the line.
- Parameters:
lineStyle- Sets the CSS style for the line.Default:
null.- Returns:
- A modified copy of the
thisobject
-
getOrient
default java.lang.String getOrient()
Returns the orient.Default:
"vertical".
-
withOrient
ILinelayout withOrient(java.lang.String orient)
Returns a copy ofthisimmutable component with the specifiedorient.Sets the orient.
- Parameters:
orient- Either"horizontal"orverticalDefault:
"vertical".- Returns:
- A modified copy of the
thisobject
-
withOrient
default ILinelayout withOrient(ILinelayout.Orient orient)
Returns a copy ofthisimmutable component with the specifiedorient.Sets the orient of component
- Parameters:
orient- TheorientDefault:
"horizontal".- Returns:
- A modified copy of the
thisobject
-
getFirstScale
default int getFirstScale()
Returns the scale of space occupied by the first area.Default:
1.
-
withFirstScale
ILinelayout withFirstScale(int firstScale)
Returns a copy ofthisimmutable component with the specifiedfirstScale.Sets the scale of space occupied by the first area.
- Parameters:
firstScale- The scale of space occupied by the first area.Default:
1.- Returns:
- A modified copy of the
thisobject
-
getLastScale
default int getLastScale()
Returns the scale of space occupied by the last area.Default:
1.
-
withLastScale
ILinelayout withLastScale(int lastScale)
Returns a copy ofthisimmutable component with the specifiedlastScale.Sets the scale of space occupied by the last area.
- Parameters:
lastScale- The scale of space occupied by the last area.Default:
1.- Returns:
- A modified copy of the
thisobject
-
of
static ILinelayout of(java.lang.Iterable<? extends ILineitem<IAnyGroup>> children)
Returns the instance with the givenILineitemchildren.- Parameters:
children- The children ofILineitem
-
of
static ILinelayout of(ILineitem<IAnyGroup>... children)
Returns the instance with the givenILineitemchildren.- Parameters:
children- The children ofILineitem
-
ofOrient
static ILinelayout ofOrient(ILinelayout.Orient orient)
Returns the instance with the given orient.- Parameters:
orient- The orient of this component.
-
ofId
static ILinelayout ofId(java.lang.String id)
Returns the instance with the given id.- Parameters:
id- The id to identify this component
-
-