Package org.woped.pnml

Examples of org.woped.pnml.TVariables


              iPL.setMyRole(link.getMyRole());
              iPL.setWSDL(link.getWsdlUrl());
            }
           
            //get Variables
            TVariables iVs = iNetToolSpec.addNewVariables();
            int VarCounter=0;
            while (petrinetModel.getElementContainer().getVariableList().getBpelCode().sizeOfVariableArray()>VarCounter){
              org.woped.pnml.TVariable iVar = iVs.addNewVariable();
              iVar.setName(petrinetModel.getElementContainer().getTVariablesList().getVariableArray(VarCounter).getName());
              iVar.setType(petrinetModel.getElementContainer().getTVariablesList().getVariableArray(VarCounter).getType());
              VarCounter++;
             }
           
View Full Code Here


                }
              }
            }

            if (currentNet.getToolspecificArray(j).isSetVariables()) {
              TVariables vlist = currentNet.getToolspecificArray(
                  j).getVariables();
              for (int x = 0; x < vlist.sizeOfVariableArray(); x++) {
                TVariable var = vlist.getVariableArray(x);
                currentPetrinet.getElementContainer()
                    .addVariable(var.getName(),
                        var.getType().getLocalPart());
              }
            }
View Full Code Here

TOP

Related Classes of org.woped.pnml.TVariables

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.