Package charvax.swing.tree

Examples of charvax.swing.tree.TreePath


    /** Used to create an event when the node structure has changed in some way,
     * identifying the path to the root of a modified subtree as an array of
     * Objects.
     */
     public TreeModelEvent(Object source, Object[] objects) {
   this(source, new TreePath(objects), null, null);
     }
View Full Code Here


    /** Used to create an event when nodes have been changed, inserted, or
     * removed, identifying the path to the parent of the modified items as
     * an array of Objects.
     */
    TreeModelEvent(Object source, Object[] objects, int[] childIndices, Object[] children) {
  this(source, new TreePath(objects), childIndices, children);
    }
View Full Code Here

TOP

Related Classes of charvax.swing.tree.TreePath

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.