Package org.openbp.cockpit.modeler.figures.process

Examples of org.openbp.cockpit.modeler.figures.process.ProcessVariableConnection


              DataLink link = (DataLink) itLinks.next();

              if (link.getSourceParam() == oldVar || link.getTargetParam() == oldVar)
              {
                // DEBUG System.out.println ("Removing data link " + link.getName () + " from " + link.getSourceParam ().getPath () + " to " + link.getTargetParam ().getPath ());
                ProcessVariableConnection con = (ProcessVariableConnection) link.getRepresentation();
                con.release();

                // Remove the link itself
                currentProcess.removeDataLink(link);
              }
            }
View Full Code Here

TOP

Related Classes of org.openbp.cockpit.modeler.figures.process.ProcessVariableConnection

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.