Package org.zkoss.stateless.sul
Interface INorth<I extends IAnyGroup>
-
- All Superinterfaces:
IComponent<INorth<I>>,IHtmlBasedComponent<INorth<I>>,ILayoutRegion<INorth<I>>,ISingleChildable<INorth<I>,I>,IXulElement<INorth<I>>
public interface INorth<I extends IAnyGroup> extends ILayoutRegion<INorth<I>>, ISingleChildable<INorth<I>,I>
ImmutableNorthcomponentA north region of a border layout.
- Author:
- katherine
- See Also:
North
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classINorth.Builder<I extends IAnyGroup>Builds instances of typeINorth.static classINorth.UpdaterBuilds an updater of typeINorthforUiAgent.smartUpdate(Locator, SmartUpdater).-
Nested classes/interfaces inherited from interface org.zkoss.stateless.sul.ILayoutRegion
ILayoutRegion.Border
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.StringgetCmargins()Returns the collapsed margins, which is a list of numbers separated by comma.default java.lang.StringgetSize()Returns the size of this region.default java.lang.StringgetWidgetClass()Returns the client widget class.static <I extends IAnyGroup>
INorth<I>of(I child)Return the instance with the given child.static <I extends IAnyGroup>
INorth<I>ofId(java.lang.String id)Returns the instance with the given id.INorth<I>withCmargins(java.lang.String cmargins)Returns a copy ofthisimmutable component with the specifiedcmargins.default INorth<I>withSize(java.lang.String size)Returns a copy ofthisimmutable component with the specifiedsize.-
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.ILayoutRegion
getBorder, getMargins, getMaxsize, getMinsize, getTitle, isAutoscroll, isClosable, isCollapsible, isNativeScrollbar, isOpen, isSlidable, isSlide, isSplittable, withAutoscroll, withBorder, withBorder, withClosable, withCollapsible, withMargins, withMaxsize, withMinsize, withNativeScrollbar, withOpen, withSlidable, withSlide, withSplittable, withTitle
-
Methods inherited from interface org.zkoss.stateless.sul.ISingleChildable
getChild, withChild
-
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.layout.North"- Specified by:
getWidgetClassin interfaceIComponent<I extends IAnyGroup>
-
getSize
@Lazy @Nullable default java.lang.String getSize()
Returns the size of this region. This method is shortcut forIHtmlBasedComponent.getHeight().
-
withSize
default INorth<I> withSize(@Nullable java.lang.String size)
Returns a copy ofthisimmutable component with the specifiedsize.This method is shortcut for
IHtmlBasedComponent.withHeight(String).- Parameters:
size- The height of the component.Default:
null- Returns:
- A modified copy of the
thisobject
-
getCmargins
default java.lang.String getCmargins()
Returns the collapsed margins, which is a list of numbers separated by comma.Default:
"3,0,0,3"
-
withCmargins
INorth<I> withCmargins(java.lang.String cmargins)
Returns a copy ofthisimmutable component with the specifiedcmargins.Sets the collapsed margins for the component "0,1,2,3" that direction is "top,left,right,bottom"
- Parameters:
cmargins- The collapsed margins for the componentDefault:
"3,0,0,3"- Returns:
- A modified copy of the
thisobject
-
of
static <I extends IAnyGroup> INorth<I> of(I child)
Return the instance with the given child.- Parameters:
child- The child from any group
-
-