Interface ITreecol<I extends IAnyGroup>
-
- All Superinterfaces:
IChildable<ITreecol<I>,I>,IChildrenOfInputgroup<ITreecol<I>>,IComponent<ITreecol<I>>,IHeaderElement<ITreecol<I>>,IHtmlBasedComponent<ITreecol<I>>,ILabelElement<ITreecol<I>>,ILabelImageElement<ITreecol<I>>,IXulElement<ITreecol<I>>
public interface ITreecol<I extends IAnyGroup> extends IHeaderElement<ITreecol<I>>, IChildable<ITreecol<I>,I>
ImmutableTreecolcomponentSupport @Action
Name Action Type onSort ActionData: SortData
Denotes user has sorted the treeitem of this treecol.- Author:
- jumperchen
- See Also:
Treecol
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classITreecol.Builder<I extends IAnyGroup>Builds instances of typeITreecol.static classITreecol.SortDirectionSets the sort direction.static classITreecol.UpdaterBuilds an updater of typeITreecolforUiAgent.smartUpdate(Locator, SmartUpdater).
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default intgetMaxlength()Returns the maximal length of each item's label.java.util.Comparator<?>getSortAscending()Returns the ascending sorter, or null if not available.java.util.Comparator<?>getSortDescending()Returns the descending sorter, or null if not available.default java.lang.StringgetSortDirection()Returns the sort direction.default java.lang.StringgetWidgetClass()Returns the client widget class.static <I extends IAnyGroup>
ITreecol<I>of(I... children)Returns the instance with the given any group children.static <I extends IAnyGroup>
ITreecol<I>of(java.lang.Iterable<? extends I> children)Returns the instance with the given any group children.static <I extends IAnyGroup>
ITreecol<I>of(java.lang.String label)Returns the instance with the given label.static <I extends IAnyGroup>
ITreecol<I>of(java.lang.String label, java.lang.String image)Returns the instance with the given label and image.static <I extends IAnyGroup>
ITreecol<I>ofId(java.lang.String id)Returns the instance with the given id.static <I extends IAnyGroup>
ITreecol<I>ofImage(java.lang.String image)Returns the instance with the given image.ITreecol<I>withMaxlength(int maxlength)Returns a copy ofthisimmutable component with the specifiedmaxlength.default ITreecol<I>withSortAscending(java.lang.String sortAscending)Returns a copy ofthisimmutable component with the specifiedsortAscendingclass name.ITreecol<I>withSortAscending(java.util.Comparator<?> sortAscending)Returns a copy ofthisimmutable component with the specifiedsortAscending.default ITreecol<I>withSortDescending(java.lang.String sortDescending)Returns a copy ofthisimmutable component with the specifiedsortDescendingclass name.ITreecol<I>withSortDescending(java.util.Comparator<?> sortDescending)Returns a copy ofthisimmutable component with the specifiedsortDescending.ITreecol<I>withSortDirection(java.lang.String sortDirection)Returns a copy ofthisimmutable component with the specifiedsortDirection.default ITreecol<I>withSortDirection(ITreecol.SortDirection sortDirection)Returns a copy ofthisimmutable component with the specifiedsortDirection.-
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.IHeaderElement
getAlign, getValign, withAlign, withValign
-
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
-
getWidgetClass
default java.lang.String getWidgetClass()
Returns the client widget class.Default:
"zul.sel.Treecol"- Specified by:
getWidgetClassin interfaceIComponent<I extends IAnyGroup>
-
getSortDirection
default java.lang.String getSortDirection()
Returns the sort direction.Default: "natural".
-
withSortDirection
ITreecol<I> withSortDirection(java.lang.String sortDirection)
Returns a copy ofthisimmutable component with the specifiedsortDirection.Sets the sort direction. This does not sort the data, it only serves as an indicator as to how the tree is sorted. (unless the tree has
ITree.isAutosort()attribute for model case)- Parameters:
sortDirection- One of"ascending","descending"and"natural"Default:
"natural".- Returns:
- A modified copy of the
thisobject
-
withSortDirection
default ITreecol<I> withSortDirection(ITreecol.SortDirection sortDirection)
Returns a copy ofthisimmutable component with the specifiedsortDirection.Sets the sort direction. This does not sort the data, it only serves as an indicator as to how the tree is sorted. (unless the tree has
ITree.isAutosort()attribute for model case)- Parameters:
sortDirection- One ofITreecol.SortDirectionDefault:
ITreecol.SortDirection.NATURAL.- Returns:
- A modified copy of the
thisobject
-
getMaxlength
default int getMaxlength()
Returns the maximal length of each item's label.Default:
0(no limit).
-
withMaxlength
ITreecol<I> withMaxlength(int maxlength)
Returns a copy ofthisimmutable component with the specifiedmaxlength.Sets the maximal length of each item's label.
Default: 0 (no limit).
Notice that maxlength will be applied to this header and all listcell of the same column.
- Parameters:
maxlength- One ofITreecol.SortDirectionDefault:
0.- Returns:
- A modified copy of the
thisobject
-
getSortAscending
@Nullable java.util.Comparator<?> getSortAscending()
Returns the ascending sorter, or null if not available.Default:
null
-
withSortAscending
ITreecol<I> withSortAscending(@Nullable java.util.Comparator<?> sortAscending)
Returns a copy ofthisimmutable component with the specifiedsortAscending.Sets the ascending sorter, or null for no sorter for the ascending order.
- Parameters:
sortAscending- The comparator used to sort the ascending order.Default:
null.- Returns:
- A modified copy of the
thisobject
-
withSortAscending
default ITreecol<I> withSortAscending(java.lang.String sortAscending) throws java.lang.ClassNotFoundException, java.lang.InstantiationException, java.lang.IllegalAccessException
Returns a copy ofthisimmutable component with the specifiedsortAscendingclass name.Sets the ascending sorter with the class name, or null for no sorter for the ascending order.
- Parameters:
sortAscending- The comparator used to sort the ascending order.Default:
null.- Returns:
- A modified copy of the
thisobject - Throws:
java.lang.ClassNotFoundExceptionjava.lang.InstantiationExceptionjava.lang.IllegalAccessException
-
getSortDescending
@Nullable java.util.Comparator<?> getSortDescending()
Returns the descending sorter, or null if not available.Default:
null
-
withSortDescending
ITreecol<I> withSortDescending(@Nullable java.util.Comparator<?> sortDescending)
Returns a copy ofthisimmutable component with the specifiedsortDescending.Sets the descending sorter, or null for no sorter for the descending order.
- Parameters:
sortDescending- The comparator used to sort the descending order.Default:
null.- Returns:
- A modified copy of the
thisobject
-
withSortDescending
default ITreecol<I> withSortDescending(java.lang.String sortDescending) throws java.lang.ClassNotFoundException, java.lang.InstantiationException, java.lang.IllegalAccessException
Returns a copy ofthisimmutable component with the specifiedsortDescendingclass name.Sets the descending sorter with the class name, or null for no sorter for the descending order.
- Parameters:
sortDescending- The comparator used to sort the descending order.Default:
null.- Returns:
- A modified copy of the
thisobject - Throws:
java.lang.ClassNotFoundExceptionjava.lang.InstantiationExceptionjava.lang.IllegalAccessException
-
of
static <I extends IAnyGroup> ITreecol<I> of(java.lang.String label)
Returns the instance with the given label.- Parameters:
label- The label belongs to this column.
-
of
static <I extends IAnyGroup> ITreecol<I> of(java.lang.String label, java.lang.String image)
Returns the instance with the given label and image.- Parameters:
label- The label that the column holds.image- The image that the column holds.
-
of
static <I extends IAnyGroup> ITreecol<I> of(java.lang.Iterable<? extends I> children)
Returns the instance with the given any group children.- Parameters:
children- The children belong to any group- See Also:
IAnyGroup
-
of
static <I extends IAnyGroup> ITreecol<I> of(I... children)
Returns the instance with the given any group children.- Parameters:
children- The children belong to any group- See Also:
IAnyGroup
-
ofImage
static <I extends IAnyGroup> ITreecol<I> ofImage(java.lang.String image)
Returns the instance with the given image.- Parameters:
image- The image that the column holds.
-
-