Package ptolemy.actor.gui

Examples of ptolemy.actor.gui.RenameDialog


                return;
            }
            // Create a dialog for configuring the object.
            // First, identify the top parent frame.
            Frame parent = getFrame();
            new RenameDialog(parent, target);
        } catch (Throwable throwable) {
            // Giotto code generator on giotto/demo/Hierarchy/Hierarchy.xml
            // was throwing an exception here that was not being displayed
            // in the UI.
            MessageHandler.error(
View Full Code Here


                while (parent.getParent() != null) {
                    parent = parent.getParent();
                }

                if (parent instanceof Frame) {
                    new RenameDialog((Frame) parent, target);
                } else {
                    new RenameDialog(null, target);
                }
            }
        };

        return menu.add(action, name);
View Full Code Here

TOP

Related Classes of ptolemy.actor.gui.RenameDialog

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.