Package eu.planets_project.pp.plato.bean

Examples of eu.planets_project.pp.plato.bean.ResultMap


        for (Leaf l : selectedPlan.getTree().getRoot().getAllLeaves()) {
            HashMap<String,Double> map = new HashMap<String,Double>();
            for (Alternative a: selectedPlan.getAlternativesDefinition().getConsideredAlternatives()) {
                map.put(a.getName(), l.getResult(a));
            }
            ResultMap m = new ResultMap();
            m.setResults(map);
            results.put(l,m);
        }

        resetFocus();
    }
View Full Code Here

TOP

Related Classes of eu.planets_project.pp.plato.bean.ResultMap

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.