Package jsynoptic.plugins.java3d.panels

Examples of jsynoptic.plugins.java3d.panels.PrimitiveDialog


            _title=title;
        }
       
        @Override
        public void actionPerformed(ActionEvent e) {
            PrimitiveDialog d=new PrimitiveDialog(
                    javax.swing.SwingUtilities.getWindowAncestor( getNode().getTree()),
                    getLocation(),
                    _primitiveClass, _title);
            Primitive n=d.getResult();
            if(n!=null){
                GroupNode gn=(GroupNode)getNode();
                gn.addChild(n);
                AddEdit ae=new AddEdit(gn, n, null);
View Full Code Here

TOP

Related Classes of jsynoptic.plugins.java3d.panels.PrimitiveDialog

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.