Package eu.scape_project.planning.plato.wfview.beans

Examples of eu.scape_project.planning.plato.wfview.beans.ReportLeaf


     */
    public List<ReportLeaf> constructPlanReportLeaves() {
        List<ReportLeaf> leafBeans = new ArrayList<ReportLeaf>();

        for (Leaf l : plan.getTree().getRoot().getAllLeaves()) {
            leafBeans.add(new ReportLeaf(l, plan.getAlternativesDefinition().getConsideredAlternatives()));
            // TODO: Check if this statement can be removed
            l.initTransformer();
        }

        return leafBeans;
View Full Code Here


        planetsExecutablePlanPrettyFormat = "";

        leafBeans.clear();
        for (Leaf l : this.plan.getTree().getRoot().getAllLeaves()) {
            leafBeans.add(new ReportLeaf(l, plan.getAlternativesDefinition().getConsideredAlternatives()));
        }

        policyRoots.clear();
        if (plan.getProjectBasis().getPolicyTree() != null) {
            PolicyNode policyRoot = plan.getProjectBasis().getPolicyTree().getRoot();
View Full Code Here

TOP

Related Classes of eu.scape_project.planning.plato.wfview.beans.ReportLeaf

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.