All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.java.swing.event.TreeModelEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----com.sun.java.swing.event.TreeModelEvent

public class TreeModelEvent
extends EventObject
TreeChangeEvent is used to notify listeners that a tree model has changed.

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 Swing1.0 applications. It will not be possible to load serialized Swing1.0 objects with future releases of Swing. The JDK1.2 release of Swing will be the compatibility baseline for the serialized form of Swing objects.


Variable Index

 o childIndices
Indices identifying the position of where the children were.
 o children
Children that have been removed.
 o path
Path to the parent of the nodes that have changed.

Constructor Index

 o TreeModelEvent(Object, Object[])
 o TreeModelEvent(Object, Object[], int[], Object[])
 o TreeModelEvent(Object, TreePath)
 o TreeModelEvent(Object, TreePath, int[], Object[])

Method Index

 o getChildIndices()
 o getChildren()
Returns the objects that are children of the node identified by path at the locations childIndices (if this is removal event the *children will no longer be children).
 o getPath()
Convenience method to get the Object[] path from the JTreePath instance that this event wraps.
 o getTreePath()
 o toString()

Variables

 o path
 protected TreePath path
Path to the parent of the nodes that have changed.

 o childIndices
 protected int childIndices[]
Indices identifying the position of where the children were.

 o children
 protected Object children[]
Children that have been removed.

Constructors

 o TreeModelEvent
 public TreeModelEvent(Object source,
                       Object path[],
                       int childIndices[],
                       Object children[])
 o TreeModelEvent
 public TreeModelEvent(Object source,
                       Object path[])
 o TreeModelEvent
 public TreeModelEvent(Object source,
                       TreePath path,
                       int childIndices[],
                       Object children[])
 o TreeModelEvent
 public TreeModelEvent(Object source,
                       TreePath path)

Methods

 o getTreePath
 public TreePath getTreePath()
 o getPath
 public Object[] getPath()
Convenience method to get the Object[] path from the JTreePath instance that this event wraps.

 o getChildren
 public Object[] getChildren()
Returns the objects that are children of the node identified by path at the locations childIndices (if this is removal event the *children will no longer be children).

 o getChildIndices
 public int[] getChildIndices()
 o toString
 public String toString()
Overrides:
toString in class EventObject

All Packages  Class Hierarchy  This Package  Previous  Next  Index