Package eu.planets_project.pp.plato.model

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


        Alternative alt2 = Alternative.createAlternative();
        alt2.setName("PDF/A ToolB");
        alt2.setDescription("Convert to PDF/A using the well-tested tool 'B'");
        q.getAlternativesDefinition().addAlternative(alt2);

        Decision d2 = new Decision();
        d2.setDecision(GoDecision.GO);
        d2.setActionNeeded("also no actions needed");
        d2.setReason("Reason, why no actions are needed? Hmm...");

        q.setDecision(d2);

        Node rootN = new Node();
        rootN.setName("Minimalist root node");
View Full Code Here


        ObjectiveTree t = new TreeLoader().load("data/trees/pdfa.xml");
        Plan p = new Plan();
        p.getPlanProperties().setName("Plato-Testproject number");
        p.getPlanProperties().setAuthor("Christoph Becker");

        Decision d = new Decision();
        d.setDecision(GoDecision.GO);
        d.setActionNeeded("nothing");
        d.setReason("This is just SOO great, oh man!");

        p.setDecision(d);
        p.getPlanProperties().setDescription("This is the best and best and even better test project one can imagine.");
        p.getProjectBasis().setDocumentTypes("This is a test documentation string.");
        p.getPlanProperties().setOrganization("ICW - Icebears for Climate warming");
View Full Code Here

        // first we get our stored decision
        decision = selectedPlan.getDecision();

        // if no decision has yet been stored we create one
        if (decision == null) {
            decision = new Decision();
        }

        alternativeList = selectedPlan.getAlternativesDefinition().getAlternatives();
        // second, we determine a list of alternatives that comprises all alternatives
        // the one the user wants to consider for evaluation plus the one the user wants
View Full Code Here

TOP

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

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.