Package org.openbp.core.model.item.process

Examples of org.openbp.core.model.item.process.Param


   */
  public void finishNodeSocketExecution(NodeSocket socket)
  {
    for (Iterator itParam = socket.getParams(); itParam.hasNext();)
    {
      Param param = (Param) itParam.next();

      String name = param.getName();
      String contextName = param.getContextName();
      Object value = getScriptVariable(name);
      context.setObject(contextName, value);

      // Remove the parameter from the script namespace
      removeScriptVariable(name);
View Full Code Here


        getDrawing().getEditor().startUndo("Add Global Link");

        DataLink dataLink = getDrawing().getProcess().createDataLink();

        // Determine source and target parameter depending if we have an in- our outgoing global link
        Param sourceParam;
        Param targetParam;

        SocketFigure socketFigure = (SocketFigure) getParent();
        if (socketFigure.isEntrySocket())
        {
          sourceParam = processVariable;
View Full Code Here

TOP

Related Classes of org.openbp.core.model.item.process.Param

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.