Package echopointng.tree

Examples of echopointng.tree.TreePath


    /**
     * @return The selected node within the table
     */
    public DefaultMutableTreeNode getSelectedNode() {
        TreePath path = this.getSelectedPath();
        if ((path != null) && (path.getLastPathComponent() != null) && (path.getLastPathComponent() instanceof DefaultMutableTreeNode)) {
            return ((DefaultMutableTreeNode) path.getLastPathComponent());
        } else {
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of echopointng.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.