Package edu.neu.ccs.task

Examples of edu.neu.ccs.task.StepPlan


    } 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
      return;
   
    if (plan == focus)
      xw.writeAttribute("STATUS", "FOCUS");
View Full Code Here

TOP

Related Classes of edu.neu.ccs.task.StepPlan

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.