Package org.apache.airavata.xbaya.graph.system

Examples of org.apache.airavata.xbaya.graph.system.ExitNode


    /**
     * @see org.apache.airavata.xbaya.component.Component#createNode(org.apache.airavata.xbaya.graph.Graph)
     */
    @Override
    public Node createNode(Graph graph) {
        ExitNode exitNode = new ExitNode(graph);
        exitNode.createID();
        createPorts(exitNode);
        return exitNode;
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.xbaya.graph.system.ExitNode

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.