Package eu.planets_project.pp.plato.model

Examples of eu.planets_project.pp.plato.model.ExecutablePlanDefinition


        }
       
       
        // TODO HK how does this here relate to the upper try-catch block and the exception??
        // Smells like a hack!
        ExecutablePlanDefinition plan = p.getExecutablePlanDefinition();
        addStringElement(executablePlan, "objectPath", plan.getObjectPath());
        addStringElement(executablePlan, "toolParameters", plan.getToolParameters());
        addStringElement(executablePlan, "triggersConditions", plan.getTriggersConditions());
        addStringElement(executablePlan, "validateQA", plan.getValidateQA());
        addChangeLog(plan.getChangeLog(), executablePlan);
       
        Element planDef = projectNode.addElement("planDefinition");
        PlanDefinition pdef = p.getPlanDefinition();
        planDef.addAttribute("currency", pdef.getCurrency());
        addStringElement(planDef, "costsIG", pdef.getCostsIG());
View Full Code Here

TOP

Related Classes of eu.planets_project.pp.plato.model.ExecutablePlanDefinition

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.