Package org.woped.editor.controller.bpel

Examples of org.woped.editor.controller.bpel.Wait


                }
                if (transitions[i].getToolspecificArray(j)
                    .isSetWait()) {
                  TWait wait = transitions[i]
                      .getToolspecificArray(j).getWait();
                  Wait bpel = new Wait(wait.getName(), wait
                      .getTyp(), wait.getYear(), wait
                      .getMonth(), wait.getDay(), wait
                      .getHour(), wait.getMinute(), wait
                      .getSecond());
                  map.setBpeldata(bpel);
View Full Code Here


          org.woped.pnml.TReply iReply = iToolspecific.addNewReply();
          iReply.set((XmlObject)((Reply)currentModel.getBpelData()).getActivity());
        }
        if (org.woped.editor.controller.bpel.Wait.class.isInstance(currentModel.getBpelData())){
          org.woped.pnml.TWait iWait = iToolspecific.addNewWait();
          Wait w = (Wait) currentModel.getBpelData();
          iWait.setName(w.getName());
          iWait.setYear(w.getYear());
          iWait.setMonth(w.getMonth());
          iWait.setDay(w.getDay());
          iWait.setHour(w.getHour());
          iWait.setMinute(w.getMinute());
          iWait.setSecond(w.getSecond());
          iWait.setTyp(w.getWaitConditionType());
        }
        /*if (org.woped.bpel.gui.transitionproperties.Empty.class.isInstance(currentModel.getBpelData())){
          org.woped.pnml.TEmpty iEmpty = iToolspecific.addNewEmpty();
          iEmpty.set((XmlObject)((BaseActivity)currentModel.getBpelData()).getActivity());
        }*/
 
View Full Code Here

TOP

Related Classes of org.woped.editor.controller.bpel.Wait

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.