Package org.uengine.kernel

Examples of org.uengine.kernel.SwitchActivity


      sb.append("<img src='"+imageRootPath+"images/end.gif'>");
    } else {
      Vector<GraphActivity> incommings = graphAct.getPrevious();
     
      if (incommings.get(0).getReferenceActivity() instanceof SwitchActivity) {
        SwitchActivity switchActivity = (SwitchActivity) incommings.get(0).getReferenceActivity();
        Vector<Activity> children = switchActivity.getChildActivities();
       
        appendSwitchActivityDescription(act, switchActivity, children, sb);
      }
     
      sb.append(sav.render(act,instance, (act instanceof ComplexActivity ? noDecoratedOption : options)));
View Full Code Here

TOP

Related Classes of org.uengine.kernel.SwitchActivity

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.