Package org.geoforge.guillc.treenode

Examples of org.geoforge.guillc.treenode.GfrNodCtrAbs


        TreePath tph = super.getPathForLocation(pnt.x, pnt.y);

        if (tph == null)
            return;

        GfrNodCtrAbs nod = (GfrNodCtrAbs) tph.getLastPathComponent();
       
        // --- beg fixing up issue #339
        DefaultTreeModel dtm = (DefaultTreeModel) super.getModel();
        TreeNode[] nods = dtm.getPathToRoot(nod);
        super.setSelectionPath(new TreePath(nods));
        // --- end fixing up issue #339

        GfrPmuCtlCtrAbs pop = nod.getPopup();
       
        if (pop == null)
            return;

        pop.setHighlightedNode(nod);
View Full Code Here

TOP

Related Classes of org.geoforge.guillc.treenode.GfrNodCtrAbs

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.