|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.pivot.wtk.skin.ComponentSkin
org.apache.pivot.wtk.skin.terra.TerraTreeViewSkin
public class TerraTreeViewSkin
Tree view skin.
Nested Class Summary | |
---|---|
protected static class |
TerraTreeViewSkin.BranchInfo
An internal data structure that keeps track of skin-related metadata for a tree branch. |
protected static class |
TerraTreeViewSkin.NodeInfo
An internal data structure that keeps track of skin-related metadata for a tree node. |
protected static interface |
TerraTreeViewSkin.NodeInfoVisitor
Node info visitor interface. |
protected class |
TerraTreeViewSkin.VisibleNodeIterator
Iterates through the visible nodes. |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.TreeViewListener |
---|
TreeViewListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.TreeViewBranchListener |
---|
TreeViewBranchListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.TreeViewNodeListener |
---|
TreeViewNodeListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.TreeViewSelectionListener |
---|
TreeViewSelectionListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentListener |
---|
ComponentListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentStateListener |
---|
ComponentStateListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentMouseListener |
---|
ComponentMouseListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentMouseButtonListener |
---|
ComponentMouseButtonListener.Adapter |
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentKeyListener |
---|
ComponentKeyListener.Adapter |
Constructor Summary | |
---|---|
TerraTreeViewSkin()
|
Method Summary | |
---|---|
protected void |
accept(TerraTreeViewSkin.NodeInfoVisitor visitor)
Accepts the specified visitor on all node info objects that exist in this skin's node info hierarchy. |
void |
branchCollapsed(TreeView treeView,
Sequence.Tree.Path path)
Called when a tree node is collapsed. |
void |
branchExpanded(TreeView treeView,
Sequence.Tree.Path path)
Called when a tree node is expanded. |
void |
checkmarksEnabledChanged(TreeView treeView)
Called when a tree view's checkmarks enabled flag has changed. |
protected void |
clearHighlightedNode()
Clears the highlighted node if one exists. |
void |
disabledCheckmarkFilterChanged(TreeView treeView,
Filter<?> previousDisabledCheckmarkFilter)
Called when a tree view's disabled checkmark filter has changed. |
void |
disabledNodeFilterChanged(TreeView treeView,
Filter<?> previousDisabledNodeFilter)
Called when a tree view's disabled node filter has changed. |
void |
enabledChanged(Component component)
Called when a component's enabled state has changed. |
void |
focusedChanged(Component component,
Component obverseComponent)
Called when a component's focused state has changed. |
Color |
getBackgroundColor()
|
int |
getBaseline(int width,
int height)
Returns the baseline for a given width and height. |
Color |
getBranchControlColor()
|
Color |
getBranchControlInactiveSelectionColor()
|
Color |
getBranchControlSelectionColor()
|
Color |
getColor()
|
Color |
getDisabledColor()
|
Font |
getFont()
|
Color |
getGridColor()
|
Color |
getHighlightBackgroundColor()
|
Color |
getHighlightColor()
|
Color |
getInactiveSelectionBackgroundColor()
|
Color |
getInactiveSelectionColor()
|
int |
getIndent()
|
Sequence.Tree.Path |
getNodeAt(int y)
Gets the path to the node found at the specified y-coordinate (relative to the tree view). |
Bounds |
getNodeBounds(Sequence.Tree.Path path)
Gets the bounds of the node at the specified path relative to the tree view. |
protected Bounds |
getNodeBounds(TerraTreeViewSkin.NodeInfo nodeInfo)
Gets the bounding box defined by the specified node, or null if the node is not currently visible. |
protected int |
getNodeHeight()
Gets the fixed node height of this skin. |
int |
getNodeIndent(int depth)
Gets the pixel indent of nodes at the specified depth. |
protected TerraTreeViewSkin.NodeInfo |
getNodeInfoAt(int y)
Gets the metadata associated with the node found at the specified y-coordinate, or null if there is no node at that location. |
protected TerraTreeViewSkin.NodeInfo |
getNodeInfoAt(Sequence.Tree.Path path)
Gets the metadata associated with the node at the specified path. |
int |
getPreferredHeight(int width)
Returns the visual's preferred height given the provided width constraint. |
int |
getPreferredWidth(int height)
Returns the visual's preferred width given the provided height constraint. |
int |
getRowIndex(Sequence.Tree.Path path)
Gets the row index of the node, as seen in the current visible nodes list. |
Color |
getSelectionBackgroundColor()
|
Color |
getSelectionColor()
|
boolean |
getShowBranchControls()
|
boolean |
getShowEmptyBranchControls()
|
boolean |
getShowGridLines()
|
boolean |
getShowHighlight()
|
int |
getSpacing()
|
void |
install(Component component)
Associates a skin with a component. |
boolean |
isFocusable()
By default, skins are focusable. |
boolean |
isOpaque()
By default, skins are assumed to be opaque. |
boolean |
keyPressed(Component component,
int keyCode,
Keyboard.KeyLocation keyLocation)
UP Selects the previous enabled node when select mode
is not TreeView.SelectMode.NONE DOWN Selects the next enabled node when select mode
is not TreeView.SelectMode.NONE
SHIFT + UP Increases the
selection size by including the previous enabled node when select mode
is TreeView.SelectMode.MULTI SHIFT + DOWN Increases the
selection size by including the next enabled node when select mode is
TreeView.SelectMode.MULTI |
boolean |
keyReleased(Component component,
int keyCode,
Keyboard.KeyLocation keyLocation)
SPACE toggles check mark selection when select
mode is TreeView.SelectMode.SINGLE |
void |
layout()
If the component on which the skin is installed is a container, lays out the container's children. |
boolean |
mouseClick(Component component,
Mouse.Button button,
int x,
int y,
int count)
Called when a mouse button is clicked over a component. |
boolean |
mouseDown(Component component,
Mouse.Button button,
int x,
int y)
Called when a mouse button is pressed over a component. |
boolean |
mouseMove(Component component,
int x,
int y)
Called when the mouse is moved over a component. |
void |
mouseOut(Component component)
Called when the mouse exits a component. |
boolean |
mouseUp(Component component,
Mouse.Button button,
int x,
int y)
Called when a mouse button is released over a component. |
boolean |
mouseWheel(Component component,
Mouse.ScrollType scrollType,
int scrollAmount,
int wheelRotation,
int x,
int y)
Called when the mouse wheel is scrolled over a component. |
void |
nodeCheckStateChanged(TreeView treeView,
Sequence.Tree.Path path,
TreeView.NodeCheckState previousCheckState)
Called when a node's checked state has changed. |
void |
nodeEditorChanged(TreeView treeView,
TreeView.NodeEditor previousNodeEditor)
Called when a tree view's node editor has changed. |
void |
nodeInserted(TreeView treeView,
Sequence.Tree.Path path,
int index)
Called when a node has been inserted into the tree view. |
void |
nodeRendererChanged(TreeView treeView,
TreeView.NodeRenderer previousNodeRenderer)
Called when a tree view's node renderer has changed. |
void |
nodesCleared(TreeView treeView,
Sequence.Tree.Path path)
Called when the nodes in a branch have been cleared. |
void |
nodesRemoved(TreeView treeView,
Sequence.Tree.Path path,
int index,
int count)
Called when nodes have been removed from the tree view. |
void |
nodesSorted(TreeView treeView,
Sequence.Tree.Path path)
Called when the nodes in a branch have been sorted. |
void |
nodeUpdated(TreeView treeView,
Sequence.Tree.Path path,
int index)
Called when a node in the tree view has been updated. |
void |
paint(Graphics2D graphics)
Paints the visual. |
protected void |
repaintNode(TerraTreeViewSkin.NodeInfo nodeInfo)
Repaints the region occupied by the specified node. |
void |
selectedNodeChanged(TreeView treeView,
Object previousSelectedNode)
Called when a tree view's selected node has changed. |
void |
selectedPathAdded(TreeView treeView,
Sequence.Tree.Path path)
Called when a selected path has been added to a tree view. |
void |
selectedPathRemoved(TreeView treeView,
Sequence.Tree.Path path)
Called when a selected path has been removed from a tree view. |
void |
selectedPathsChanged(TreeView treeView,
Sequence<Sequence.Tree.Path> previousSelectedPaths)
Called when a tree view's selection state has been reset. |
void |
selectModeChanged(TreeView treeView,
TreeView.SelectMode previousSelectMode)
Called when a tree view's select mode has changed. |
void |
setBackgroundColor(Color backgroundColor)
|
void |
setBackgroundColor(int backgroundColor)
|
void |
setBackgroundColor(String backgroundColor)
|
void |
setBranchControlColor(Color branchControlColor)
|
void |
setBranchControlColor(int branchControlColor)
|
void |
setBranchControlColor(String branchControlColor)
|
void |
setBranchControlInactiveSelectionColor(Color branchControlInactiveSelectionColor)
|
void |
setBranchControlInactiveSelectionColor(int branchControlInactiveSelectionColor)
|
void |
setBranchControlInactiveSelectionColor(String branchControlInactiveSelectionColor)
|
void |
setBranchControlSelectionColor(Color branchControlSelectionColor)
|
void |
setBranchControlSelectionColor(int branchControlSelectionColor)
|
void |
setBranchControlSelectionColor(String branchControlSelectionColor)
|
void |
setColor(Color color)
|
void |
setColor(int color)
|
void |
setColor(String color)
|
void |
setDisabledColor(Color disabledColor)
|
void |
setDisabledColor(int disabledColor)
|
void |
setDisabledColor(String disabledColor)
|
void |
setFont(Dictionary<String,?> font)
|
void |
setFont(Font font)
|
void |
setFont(String font)
|
void |
setGridColor(Color gridColor)
|
void |
setGridColor(int gridColor)
|
void |
setGridColor(String gridColor)
|
void |
setHighlightBackgroundColor(Color highlightBackgroundColor)
|
void |
setHighlightBackgroundColor(int highlightBackgroundColor)
|
void |
setHighlightBackgroundColor(String highlightBackgroundColor)
|
void |
setHighlightColor(Color highlightColor)
|
void |
setHighlightColor(int highlightColor)
|
void |
setHighlightColor(String highlightColor)
|
void |
setInactiveSelectionBackgroundColor(Color inactiveSelectionBackgroundColor)
|
void |
setInactiveSelectionBackgroundColor(int inactiveSelectionBackgroundColor)
|
void |
setInactiveSelectionBackgroundColor(String inactiveSelectionBackgroundColor)
|
void |
setInactiveSelectionColor(Color inactiveSelectionColor)
|
void |
setInactiveSelectionColor(int inactiveSelectionColor)
|
void |
setInactiveSelectionColor(String inactiveSelectionColor)
|
void |
setIndent(int indent)
|
void |
setIndent(Number indent)
|
void |
setSelectionBackgroundColor(Color selectionBackgroundColor)
|
void |
setSelectionBackgroundColor(int selectionBackgroundColor)
|
void |
setSelectionBackgroundColor(String selectionBackgroundColor)
|
void |
setSelectionColor(Color selectionColor)
|
void |
setSelectionColor(int selectionColor)
|
void |
setSelectionColor(String selectionColor)
|
void |
setShowBranchControls(boolean showBranchControls)
|
void |
setShowEmptyBranchControls(boolean showEmptyBranchControls)
|
void |
setShowGridLines(boolean showGridLines)
|
void |
setShowHighlight(boolean showHighlight)
|
void |
setSpacing(int spacing)
|
void |
setSpacing(Number spacing)
|
void |
showMixedCheckmarkStateChanged(TreeView treeView)
Called when a tree view's "show mixed checkmark state" flag has changed. |
void |
treeDataChanged(TreeView treeView,
List<?> previousTreeData)
Called when a tree view's data has changed. |
Methods inherited from class org.apache.pivot.wtk.skin.ComponentSkin |
---|
cursorChanged, decodeFont, dragSourceChanged, dropTargetChanged, getBaseline, getComponent, getHeight, getPreferredSize, getWidth, heightLimitsChanged, invalidateComponent, keyTyped, locationChanged, menuHandlerChanged, mouseOver, nameChanged, parentChanged, preferredSizeChanged, repaintComponent, repaintComponent, repaintComponent, repaintComponent, repaintComponent, setSize, sizeChanged, tooltipDelayChanged, tooltipTextChanged, tooltipTriggered, visibleChanged, widthLimitsChanged |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TerraTreeViewSkin()
Method Detail |
---|
public void install(Component component)
Skin
install
in interface Skin
install
in class ComponentSkin
component
- The component to which the skin is being attached.public int getPreferredWidth(int height)
ConstrainedVisual
getPreferredWidth
in interface ConstrainedVisual
height
- The height by which to constrain the preferred width, or -1
for no constraint.public int getPreferredHeight(int width)
ConstrainedVisual
getPreferredHeight
in interface ConstrainedVisual
width
- The width by which to constrain the preferred height, or -1
for no constraint.public int getBaseline(int width, int height)
ConstrainedVisual
getBaseline
in interface ConstrainedVisual
getBaseline
in class ComponentSkin
public void layout()
Skin
layout
in interface Skin
public void paint(Graphics2D graphics)
Visual
paint
in interface Visual
graphics
- The graphics context in which to paint the visual.public Font getFont()
public void setFont(Font font)
public final void setFont(String font)
public final void setFont(Dictionary<String,?> font)
public Color getColor()
public void setColor(Color color)
public void setColor(String color)
public final void setColor(int color)
public Color getDisabledColor()
public void setDisabledColor(Color disabledColor)
public void setDisabledColor(String disabledColor)
public final void setDisabledColor(int disabledColor)
public Color getBackgroundColor()
public void setBackgroundColor(Color backgroundColor)
public void setBackgroundColor(String backgroundColor)
public final void setBackgroundColor(int backgroundColor)
public Color getSelectionColor()
public void setSelectionColor(Color selectionColor)
public void setSelectionColor(String selectionColor)
public final void setSelectionColor(int selectionColor)
public Color getSelectionBackgroundColor()
public void setSelectionBackgroundColor(Color selectionBackgroundColor)
public void setSelectionBackgroundColor(String selectionBackgroundColor)
public final void setSelectionBackgroundColor(int selectionBackgroundColor)
public Color getInactiveSelectionColor()
public void setInactiveSelectionColor(Color inactiveSelectionColor)
public void setInactiveSelectionColor(String inactiveSelectionColor)
public final void setInactiveSelectionColor(int inactiveSelectionColor)
public Color getInactiveSelectionBackgroundColor()
public void setInactiveSelectionBackgroundColor(Color inactiveSelectionBackgroundColor)
public void setInactiveSelectionBackgroundColor(String inactiveSelectionBackgroundColor)
public final void setInactiveSelectionBackgroundColor(int inactiveSelectionBackgroundColor)
public Color getHighlightColor()
public void setHighlightColor(Color highlightColor)
public void setHighlightColor(String highlightColor)
public final void setHighlightColor(int highlightColor)
public Color getHighlightBackgroundColor()
public void setHighlightBackgroundColor(Color highlightBackgroundColor)
public void setHighlightBackgroundColor(String highlightBackgroundColor)
public final void setHighlightBackgroundColor(int highlightBackgroundColor)
public int getSpacing()
public void setSpacing(int spacing)
public void setSpacing(Number spacing)
public int getIndent()
public void setIndent(int indent)
public void setIndent(Number indent)
public boolean getShowHighlight()
public void setShowHighlight(boolean showHighlight)
public boolean getShowBranchControls()
public void setShowBranchControls(boolean showBranchControls)
public boolean getShowEmptyBranchControls()
public void setShowEmptyBranchControls(boolean showEmptyBranchControls)
public Color getBranchControlColor()
public void setBranchControlColor(Color branchControlColor)
public void setBranchControlColor(String branchControlColor)
public final void setBranchControlColor(int branchControlColor)
public Color getBranchControlSelectionColor()
public void setBranchControlSelectionColor(Color branchControlSelectionColor)
public void setBranchControlSelectionColor(String branchControlSelectionColor)
public final void setBranchControlSelectionColor(int branchControlSelectionColor)
public Color getBranchControlInactiveSelectionColor()
public void setBranchControlInactiveSelectionColor(Color branchControlInactiveSelectionColor)
public void setBranchControlInactiveSelectionColor(String branchControlInactiveSelectionColor)
public final void setBranchControlInactiveSelectionColor(int branchControlInactiveSelectionColor)
public Color getGridColor()
public void setGridColor(Color gridColor)
public void setGridColor(String gridColor)
public final void setGridColor(int gridColor)
public boolean getShowGridLines()
public void setShowGridLines(boolean showGridLines)
protected int getNodeHeight()
protected final TerraTreeViewSkin.NodeInfo getNodeInfoAt(int y)
protected final TerraTreeViewSkin.NodeInfo getNodeInfoAt(Sequence.Tree.Path path)
protected final Bounds getNodeBounds(TerraTreeViewSkin.NodeInfo nodeInfo)
protected final void accept(TerraTreeViewSkin.NodeInfoVisitor visitor)
visitor
- The callback to execute on each node info objectprotected void repaintNode(TerraTreeViewSkin.NodeInfo nodeInfo)
protected void clearHighlightedNode()
public boolean mouseMove(Component component, int x, int y)
ComponentMouseListener
mouseMove
in interface ComponentMouseListener
mouseMove
in class ComponentSkin
public void mouseOut(Component component)
ComponentMouseListener
mouseOut
in interface ComponentMouseListener
mouseOut
in class ComponentSkin
public boolean mouseDown(Component component, Mouse.Button button, int x, int y)
ComponentMouseButtonListener
mouseDown
in interface ComponentMouseButtonListener
mouseDown
in class ComponentSkin
public boolean mouseUp(Component component, Mouse.Button button, int x, int y)
ComponentMouseButtonListener
mouseUp
in interface ComponentMouseButtonListener
mouseUp
in class ComponentSkin
public boolean mouseClick(Component component, Mouse.Button button, int x, int y, int count)
ComponentMouseButtonListener
mouseClick
in interface ComponentMouseButtonListener
mouseClick
in class ComponentSkin
public boolean mouseWheel(Component component, Mouse.ScrollType scrollType, int scrollAmount, int wheelRotation, int x, int y)
ComponentMouseWheelListener
mouseWheel
in interface ComponentMouseWheelListener
mouseWheel
in class ComponentSkin
public boolean keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
UP
Selects the previous enabled node when select mode
is not TreeView.SelectMode.NONE
DOWN
Selects the next enabled node when select mode
is not TreeView.SelectMode.NONE
SHIFT
+ UP
Increases the
selection size by including the previous enabled node when select mode
is TreeView.SelectMode.MULTI
SHIFT
+ DOWN
Increases the
selection size by including the next enabled node when select mode is
TreeView.SelectMode.MULTI
keyPressed
in interface ComponentKeyListener
keyPressed
in class ComponentSkin
public boolean keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
SPACE
toggles check mark selection when select
mode is TreeView.SelectMode.SINGLE
keyReleased
in interface ComponentKeyListener
keyReleased
in class ComponentSkin
public boolean isFocusable()
ComponentSkin
isFocusable
in interface Skin
isFocusable
in class ComponentSkin
public boolean isOpaque()
ComponentSkin
isOpaque
in interface Skin
isOpaque
in class ComponentSkin
public void enabledChanged(Component component)
ComponentStateListener
Called both when the component is enabled and when it is disabled.
The component's enabled
flag has already been set when this
method is called so the new state can be determined by calling the
Component.isEnabled()
method.
enabledChanged
in interface ComponentStateListener
enabledChanged
in class ComponentSkin
component
- The component whose enabled state is changing.public void focusedChanged(Component component, Component obverseComponent)
ComponentStateListener
This will be called both when a component gains focus and when it loses
focus. The currently focused component has already been set when this method
is called, so that the new state of the component can be determined by calling
the Component.isFocused()
method.
focusedChanged
in interface ComponentStateListener
focusedChanged
in class ComponentSkin
component
- The component that is either gaining focus or the one that
previously had focus and is now losing it.obverseComponent
- If the component is gaining focus, this is the component
that is losing focus. If the component is losing focus
this is the component that is gaining the focus instead.public Sequence.Tree.Path getNodeAt(int y)
TreeView.Skin
getNodeAt
in interface TreeView.Skin
y
- The y-coordinate in pixels.
public Bounds getNodeBounds(Sequence.Tree.Path path)
TreeView.Skin
TreeView.Skin.getNodeIndent(int)
.
getNodeBounds
in interface TreeView.Skin
path
- The path to the node.
public int getNodeIndent(int depth)
TreeView.Skin
tree data
.
getNodeIndent
in interface TreeView.Skin
depth
- The depth, where the first child of the root has depth 1, the child
of that branch has depth 2, etc.
public int getRowIndex(Sequence.Tree.Path path)
TreeView.Skin
getRowIndex
in interface TreeView.Skin
path
- The path to the node.
public void treeDataChanged(TreeView treeView, List<?> previousTreeData)
TreeViewListener
treeDataChanged
in interface TreeViewListener
public void nodeRendererChanged(TreeView treeView, TreeView.NodeRenderer previousNodeRenderer)
TreeViewListener
nodeRendererChanged
in interface TreeViewListener
public void nodeEditorChanged(TreeView treeView, TreeView.NodeEditor previousNodeEditor)
TreeViewListener
nodeEditorChanged
in interface TreeViewListener
public void selectModeChanged(TreeView treeView, TreeView.SelectMode previousSelectMode)
TreeViewListener
selectModeChanged
in interface TreeViewListener
public void checkmarksEnabledChanged(TreeView treeView)
TreeViewListener
checkmarksEnabledChanged
in interface TreeViewListener
public void showMixedCheckmarkStateChanged(TreeView treeView)
TreeViewListener
showMixedCheckmarkStateChanged
in interface TreeViewListener
public void disabledNodeFilterChanged(TreeView treeView, Filter<?> previousDisabledNodeFilter)
TreeViewListener
disabledNodeFilterChanged
in interface TreeViewListener
public void disabledCheckmarkFilterChanged(TreeView treeView, Filter<?> previousDisabledCheckmarkFilter)
TreeViewListener
disabledCheckmarkFilterChanged
in interface TreeViewListener
public void branchExpanded(TreeView treeView, Sequence.Tree.Path path)
TreeViewBranchListener
branchExpanded
in interface TreeViewBranchListener
treeView
- The source of the event.path
- The path of the node that was shown.public void branchCollapsed(TreeView treeView, Sequence.Tree.Path path)
TreeViewBranchListener
branchCollapsed
in interface TreeViewBranchListener
treeView
- The source of the event.path
- The path of the node that was collapsed.public void nodeInserted(TreeView treeView, Sequence.Tree.Path path, int index)
TreeViewNodeListener
nodeInserted
in interface TreeViewNodeListener
public void nodesRemoved(TreeView treeView, Sequence.Tree.Path path, int index, int count)
TreeViewNodeListener
nodesRemoved
in interface TreeViewNodeListener
count
- The number of nodes that were removed, or -1 if all nodes
were removed.public void nodeUpdated(TreeView treeView, Sequence.Tree.Path path, int index)
TreeViewNodeListener
nodeUpdated
in interface TreeViewNodeListener
public void nodesCleared(TreeView treeView, Sequence.Tree.Path path)
TreeViewNodeListener
nodesCleared
in interface TreeViewNodeListener
public void nodesSorted(TreeView treeView, Sequence.Tree.Path path)
TreeViewNodeListener
nodesSorted
in interface TreeViewNodeListener
public void nodeCheckStateChanged(TreeView treeView, Sequence.Tree.Path path, TreeView.NodeCheckState previousCheckState)
TreeViewNodeStateListener
nodeCheckStateChanged
in interface TreeViewNodeStateListener
public void selectedPathAdded(TreeView treeView, Sequence.Tree.Path path)
TreeViewSelectionListener
selectedPathAdded
in interface TreeViewSelectionListener
public void selectedPathRemoved(TreeView treeView, Sequence.Tree.Path path)
TreeViewSelectionListener
selectedPathRemoved
in interface TreeViewSelectionListener
public void selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)
TreeViewSelectionListener
selectedPathsChanged
in interface TreeViewSelectionListener
public void selectedNodeChanged(TreeView treeView, Object previousSelectedNode)
TreeViewSelectionListener
selectedNodeChanged
in interface TreeViewSelectionListener
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |