Package eu.planets_project.pp.plato.model

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


     *  cause a NullPointerException because leaf.valueMap is empty. Rest of the validation is the same as in {@link EvaluateExperimentsAction.validate}
     *  Since validate is protected we cannot call IEvaluateExperiments.validate.
     */
    public boolean validate(boolean showValidationErrors) {
       
        EvaluationStatus evaluationStatus = selectedPlan.getTree().getRoot().getEvaluationStatus();
       
        if (evaluationStatus != EvaluationStatus.COMPLETE) {
            FacesMessages.instance().add(FacesMessage.SEVERITY_ERROR, "Experiments have not been conducted.");
            return false;
        }
View Full Code Here

TOP

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

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.