javax.swing.event
public class TreeSelectionEvent extends EventObject
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeansTM
has been added to the java.beans
package.
Please see XMLEncoder
.
TreeSelectionListener
,
TreeSelectionModel
Modifier and Type | Field and Description |
---|---|
protected boolean[] |
areNew
For each path identifies if that path is in fact new.
|
protected TreePath |
newLeadSelectionPath
leadSelectionPath after the paths changed, may be null.
|
protected TreePath |
oldLeadSelectionPath
leadSelectionPath before the paths changed, may be null.
|
protected TreePath[] |
paths
Paths this event represents.
|
source
Constructor and Description |
---|
TreeSelectionEvent(Object source,
TreePath[] paths,
boolean[] areNew,
TreePath oldLeadSelectionPath,
TreePath newLeadSelectionPath)
Represents a change in the selection of a TreeSelectionModel.
|
TreeSelectionEvent(Object source,
TreePath path,
boolean isNew,
TreePath oldLeadSelectionPath,
TreePath newLeadSelectionPath)
Represents a change in the selection of a TreeSelectionModel.
|
Modifier and Type | Method and Description |
---|---|
Object |
cloneWithSource(Object newSource)
Returns a copy of the receiver, but with the source being newSource.
|
TreePath |
getNewLeadSelectionPath()
Returns the current lead path.
|
TreePath |
getOldLeadSelectionPath()
Returns the path that was previously the lead path.
|
TreePath |
getPath()
Returns the first path element.
|
TreePath[] |
getPaths()
Returns the paths that have been added or removed from the
selection.
|
boolean |
isAddedPath()
Returns true if the first path element has been added to the
selection, a return value of false means the first path has been
removed from the selection.
|
boolean |
isAddedPath(int index)
Returns true if the path identified by
index was added to
the selection. |
boolean |
isAddedPath(TreePath path)
Returns true if the path identified by path was added to the
selection.
|
getSource, toString
protected TreePath[] paths
protected boolean[] areNew
protected TreePath oldLeadSelectionPath
protected TreePath newLeadSelectionPath
public TreeSelectionEvent(Object source, TreePath[] paths, boolean[] areNew, TreePath oldLeadSelectionPath, TreePath newLeadSelectionPath)
source
- source of eventpaths
- the paths that have changed in the selectionpublic TreeSelectionEvent(Object source, TreePath path, boolean isNew, TreePath oldLeadSelectionPath, TreePath newLeadSelectionPath)
source
- source of eventpath
- the path that has changed in the selectionisNew
- whether or not the path is new to the selection, false
means path was removed from the selection.public TreePath[] getPaths()
public TreePath getPath()
public boolean isAddedPath()
public boolean isAddedPath(TreePath path)
public boolean isAddedPath(int index)
index
was added to
the selection. A return value of false means the path was in the
selection but is no longer in the selection. This will raise if
index < 0 || >= getPaths
.length.public TreePath getOldLeadSelectionPath()
public TreePath getNewLeadSelectionPath()
Submit a bug or feature Copyright © 1993, 2017, Oracle and/or its affiliates. All rights reserved.
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.