Package org.zkoss.zkmax.zul
Class DefaultTristateTreeModel<E>
- java.lang.Object
-
- org.zkoss.zul.AbstractTreeModel<TreeNode<E>>
-
- org.zkoss.zul.DefaultTreeModel<E>
-
- org.zkoss.zkmax.zul.DefaultTristateTreeModel<E>
-
- All Implemented Interfaces:
java.io.Serializable
,Openable<TreeNode<E>>
,Pageable
,Selectable<TreeNode<E>>
,Sortable<TreeNode<E>>
,TreeOpenableModel
,TreeSelectableModel
,TristateModel<E>
,PageableModel
,TreeModel<TreeNode<E>>
public class DefaultTristateTreeModel<E> extends DefaultTreeModel<E> implements TristateModel<E>
A simple tristate tree data model that usesTreeNode
to represent a tree. Thus the whole tree of data must be loaded into memory, and each node must be represented byTreeNode
.If you want to implement a huge tristate tree that only a visible part shall be loaded, it is better to implement it by extending from
AbstractTreeModel
,TristateModel
.This Model is dependent on
DefaultTreeModel
, for more information please refer it.- Since:
- 10.0.0
- Author:
- Jamson Chan
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
DefaultTristateTreeModel.Path
-
Nested classes/interfaces inherited from class org.zkoss.zul.AbstractTreeModel
AbstractTreeModel.DefaultSelectionControl<E>
-
Nested classes/interfaces inherited from interface org.zkoss.zul.ext.TristateModel
TristateModel.State
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Set<DefaultTristateTreeModel.Path>
_partial
The partial selection.-
Fields inherited from class org.zkoss.zul.AbstractTreeModel
_opens, _selection
-
Fields inherited from interface org.zkoss.zul.PageableModel
INTERNAL_EVENT
-
-
Constructor Summary
Constructors Constructor Description DefaultTristateTreeModel(TreeNode<E> root)
Creates a tristate tree with the specified note as the root.DefaultTristateTreeModel(TreeNode<E> root, boolean emptyChildAsLeaf)
Creates a tristate tree with the specified note as the root.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
addPartialPath(int[] path)
boolean
addPartialPaths(int[][] paths)
boolean
addToPartial(E child)
void
clearPartial()
java.lang.Object
clone()
protected void
fireSelectionChanged(int[] path)
Fires aTreeDataEvent
for all registered listener when selection status has changed.protected void
fireTristateSelectionChanged(int[] path)
int[]
getPartialPath()
int[][]
getPartialPaths()
java.util.Set<E>
getPartials()
Returns the current partial selection.boolean
isPartial(java.lang.Object child)
Returns whether the item is partially selected.boolean
isPathPartial(int[] path)
boolean
removeFromPartial(java.lang.Object child)
boolean
removePartialPath(int[] path)
boolean
removePartialPaths(int[][] paths)
void
setMultiple(boolean multiple)
Sets the selection mode to be multiple.-
Methods inherited from class org.zkoss.zul.DefaultTreeModel
getChild, getChildCount, getIndexOfChild, getPath, getSortDirection, isLeaf, isObjectOpened, isSelected, removeFromSelection, removeOpenObject, sort, sort
-
Methods inherited from class org.zkoss.zul.AbstractTreeModel
addOpenObject, addOpenPath, addOpenPaths, addPagingEventListener, addSelectionPath, addSelectionPaths, addToSelection, addTreeDataListener, afterSort, beforeSort, clearOpen, clearSelection, fireEvent, fireEvent, fireEvent, fireOpenChanged, getActivePage, getChild, getOpenCount, getOpenObjects, getOpenPath, getOpenPaths, getPageCount, getPageSize, getRoot, getSelection, getSelectionControl, getSelectionCount, getSelectionPath, getSelectionPaths, getTotalSize, getTreeDataListeners, isMultiple, isOpenEmpty, isPathOpened, isPathSelected, isSelectionEmpty, removeOpenPath, removeOpenPaths, removePagingEventListener, removeSelectionPath, removeSelectionPaths, removeTreeDataListener, setActivePage, setOpenObjects, setPageSize, setSelection, setSelectionControl
-
-
-
-
Field Detail
-
_partial
protected java.util.Set<DefaultTristateTreeModel.Path> _partial
The partial selection.
-
-
Method Detail
-
fireSelectionChanged
protected void fireSelectionChanged(int[] path)
Description copied from class:AbstractTreeModel
Fires aTreeDataEvent
for all registered listener when selection status has changed.- Overrides:
fireSelectionChanged
in classAbstractTreeModel<TreeNode<E>>
-
fireTristateSelectionChanged
protected void fireTristateSelectionChanged(int[] path)
-
clone
public java.lang.Object clone()
- Overrides:
clone
in classDefaultTreeModel<E>
-
setMultiple
public void setMultiple(boolean multiple)
Description copied from interface:TreeSelectableModel
Sets the selection mode to be multiple.- Specified by:
setMultiple
in interfaceSelectable<E>
- Specified by:
setMultiple
in interfaceTreeSelectableModel
- Overrides:
setMultiple
in classAbstractTreeModel<TreeNode<E>>
-
addPartialPath
public boolean addPartialPath(int[] path)
-
addPartialPaths
public boolean addPartialPaths(int[][] paths)
-
removePartialPath
public boolean removePartialPath(int[] path)
-
removePartialPaths
public boolean removePartialPaths(int[][] paths)
-
isPathPartial
public boolean isPathPartial(int[] path)
-
getPartialPath
public int[] getPartialPath()
-
getPartialPaths
public int[][] getPartialPaths()
-
clearPartial
public void clearPartial()
-
getPartials
public java.util.Set<E> getPartials()
Description copied from interface:TristateModel
Returns the current partial selection.- Specified by:
getPartials
in interfaceTristateModel<E>
-
isPartial
public boolean isPartial(java.lang.Object child)
Description copied from interface:TristateModel
Returns whether the item is partially selected.- Specified by:
isPartial
in interfaceTristateModel<E>
- Parameters:
child
- a data item
-
addToPartial
public boolean addToPartial(E child)
-
removeFromPartial
public boolean removeFromPartial(java.lang.Object child)
-
-