Examples of DecompositionPlan


Examples of edu.neu.ccs.task.DecompositionPlan

    if (plan instanceof TaskPlan) {
      TaskPlan tp = (TaskPlan) plan;
      xw.writeStartElement("TASK");
      xw.writeAttribute("ID", tp.getTask().toString());
    } else if (plan instanceof DecompositionPlan) {
      DecompositionPlan dp = (DecompositionPlan) plan;
      xw.writeStartElement("RECIPE");
      xw.writeAttribute("ID", dp.getType().toString());
    } else if (plan instanceof StepPlan) {
      StepPlan sp = (StepPlan) plan;
      xw.writeStartElement("STEP");
      xw.writeAttribute("NAME", sp.getName());
    } else
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.