TreeSelectionEvent (Java SE 15 & JDK 15) (original) (raw)
All Implemented Interfaces:
[Serializable](../../../../java.base/java/io/Serializable.html "interface in java.io")
public class TreeSelectionEvent extends EventObject
An event that characterizes a change in the current selection. The change is based on any number of paths. TreeSelectionListeners will generally query the source of the event for the new selected status of each potentially changed row.
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 JavaBeans has been added to the java.beans
package. Please see XMLEncoder.
See Also:
TreeSelectionListener, TreeSelectionModel
Field Summary
Fields
Modifier and Type | Field | 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. |
Constructor Summary
Constructors
Constructor | 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. |
Method Summary
Modifier and Type | Method | 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 whether the path identified by getPath was added to the selection. |
boolean | isAddedPath(int index) | Returns whether the path at getPaths()[index] was added to the selection. |
boolean | isAddedPath(TreePath path) | Returns whether the specified path was added to the selection. |
Field Details
paths
Paths this event represents.
areNew
protected boolean[] areNew
For each path identifies if that path is in fact new.oldLeadSelectionPath
protected TreePath oldLeadSelectionPath
leadSelectionPath before the paths changed, may be null.newLeadSelectionPath
protected TreePath newLeadSelectionPath
leadSelectionPath after the paths changed, may be null.Constructor Details
TreeSelectionEvent
public TreeSelectionEvent(Object source,TreePath[] paths, boolean[] areNew,TreePath oldLeadSelectionPath,TreePath newLeadSelectionPath)
Represents a change in the selection of aTreeSelectionModel
.paths
identifies the paths that have been either added or removed from the selection.
Parameters:
source
- source of event
paths
- the paths that have changed in the selection
areNew
- aboolean
array indicating whether the paths inpaths
are new to the selection
oldLeadSelectionPath
- the previous lead selection path
newLeadSelectionPath
- the new lead selection pathTreeSelectionEvent
public TreeSelectionEvent(Object source,TreePath path, boolean isNew,TreePath oldLeadSelectionPath,TreePath newLeadSelectionPath)
Represents a change in the selection of aTreeSelectionModel
.path
identifies the path that has been either added or removed from the selection.
Parameters:
source
- source of event
path
- the path that has changed in the selection
isNew
- whether or not the path is new to the selection, false means path was removed from the selection.
oldLeadSelectionPath
- the previous lead selection path
newLeadSelectionPath
- the new lead selection pathMethod Details
getPaths
Returns the paths that have been added or removed from the selection.
Returns:
copy of the array ofTreePath
obects for this event.getPath
Returns the first path element.
Returns:
the firstTreePath
element represented by this eventisAddedPath
public boolean isAddedPath()
Returns whether the path identified bygetPath
was added to the selection. A return value oftrue
indicates the path identified bygetPath
was added to the selection. A return value offalse
indicatesgetPath
was selected, but is no longer selected.
Returns:
true
ifgetPath
was added to the selection,false
otherwiseisAddedPath
public boolean isAddedPath(TreePath path)
Returns whether the specified path was added to the selection. A return value oftrue
indicates the path identified bypath
was added to the selection. A return value offalse
indicatespath
is no longer selected. This method is only valid for the paths returned fromgetPaths()
; invoking with a path not included ingetPaths()
throws anIllegalArgumentException
.
Parameters:
path
- the path to test
Returns:
true
ifpath
was added to the selection,false
otherwise
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- ifpath
is not contained ingetPaths
See Also:
getPaths()isAddedPath
public boolean isAddedPath(int index)
Returns whether the path atgetPaths()[index]
was added to the selection. A return value oftrue
indicates the path was added to the selection. A return value offalse
indicates the path is no longer selected.
Parameters:
index
- the index of the path to test
Returns:
true
if the path was added to the selection,false
otherwise
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- if index is outside the range ofgetPaths
Since:
1.3
See Also:
getPaths()getOldLeadSelectionPath
public TreePath getOldLeadSelectionPath()
Returns the path that was previously the lead path.
Returns:
aTreePath
containing the old lead selection pathgetNewLeadSelectionPath
public TreePath getNewLeadSelectionPath()
Returns the current lead path.
Returns:
aTreePath
containing the new lead selection pathcloneWithSource
Returns a copy of the receiver, but with the source being newSource.
Parameters:
newSource
- source of event
Returns:
anObject
which is a copy of this event with the source being thenewSource
provided