KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > swing > event > TreeModelEvent

javax.swing.event
Class TreeModelEvent

java.lang.Object
  extended by java.util.EventObject
      extended by javax.swing.event.TreeModelEvent
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code, XMLEncoder

protected int[] childIndices
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Object[] children
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int[] getChildIndices()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object[] getChildren()
See Also:
getChildIndices(), getPath()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object[] getPath()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public TreePath getTreePath()
See Also:
TreePath.getLastPathComponent()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected TreePath path
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String toString()
See Also:
EventObject
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public TreeModelEvent(Object source,
                      Object[] path)
See Also:
TreePath
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public TreeModelEvent(Object source,
                      Object[] path,
                      int[] childIndices,
                      Object[] children)
See Also:
TreePath
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public TreeModelEvent(Object source,
                      TreePath path)
See Also:
TreeModelEvent(Object,Object[])
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public TreeModelEvent(Object source,
                      TreePath path,
                      int[] childIndices,
                      Object[] children)
See Also:
TreeModelEvent(Object,Object[],int[],Object[])
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags