Examples of showPopupMessage()


Examples of ca.nengo.ui.models.UINeoNode.showPopupMessage()

                    } else {
                        boolean centerAndNotify = !isFirstUpdate;
                        addUINode(nodeUI, centerAndNotify, false);
                        if (centerAndNotify) {
                            nodeUI.showPopupMessage("Node " + node.getName() + " added to Network");
                        }
                    }
                } else {
                    neoNodesChildren.put(nodeUI.getModel(), nodeUI);
                }
View Full Code Here

Examples of ca.nengo.ui.models.UINeoNode.showPopupMessage()

         */
        for (Node node : currentNodes.keySet()) {
            // Remove nodes which are no longer referenced by the network model
            if (getUINode(node) == null) {
                UINeoNode nodeUI = currentNodes.get(node);
                nodeUI.showPopupMessage("Node " + nodeUI.getName() + " removed from Network");
                nodeUI.destroy();
            }
        }

        /*
 
View Full Code Here

Examples of ca.nengo.ui.models.nodes.widgets.UITermination.showPopupMessage()

        for (UIProjection projectionUI : projectionsToRemove) {
            UITermination terminationUI = projectionUI.getTermination();

            projectionUI.destroy();
            if (!isFirstUpdate) {
                terminationUI.showPopupMessage("REMOVED Projection to "
                        + terminationUI.getNodeParent().getName() + "." + terminationUI.getName());
            }
        }

        /*
 
View Full Code Here

Examples of ca.nengo.ui.models.nodes.widgets.UITermination.showPopupMessage()

                UIOrigin originUI = nodeOrigin.showOrigin(origin.getName());
                UITermination termUI = nodeTerm.showTermination(term.getName());

                originUI.connectTo(termUI, false);
                if (!isFirstUpdate) {
                    termUI.showPopupMessage("NEW Projection to " + termUI.getName() + "."
                            + getName());
                }
            } else {
                if (nodeOrigin == null) {
                    Util.Assert(false, "Could not find a Origin attached to a projection: "
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.