Package jsynoptic.plugins.java3d

Examples of jsynoptic.plugins.java3d.GraphObjectReference$State


        _icon = getIcon(gn.getObject());
        _description = getDescription(gn.getObject());
    }

    public String getName() {
        GraphObjectReference gn = (GraphObjectReference) getGraphObject();
        String sgoName = (gn.getObject()).getName();
        if (sgoName != null) {
            return "-> " + _name + "[" + sgoName + "]";
        } else {
            return "-> " + _name;
        }
View Full Code Here


        }

        @Override
        public void actionPerformed(ActionEvent e) {
            ArrayList<SceneGraphObject> sgos = new ArrayList<SceneGraphObject>();
            GraphObjectReference gn = (GraphObjectReference) getNode()
                    .getGraphObject();
            Universe u = Universe.getGraphPath(gn.getNode(), gn.getObject(),
                    sgos);
            if(u!=null){
                getNode().getTree().expand(sgos, u);
            }
            else{
                System.err.println("Can not expand "+gn.getObject()+" node is missing");
            }
        }
View Full Code Here

TOP

Related Classes of jsynoptic.plugins.java3d.GraphObjectReference$State

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.