package model; /** * * @author mark */ public interface CriterionEditor { String getComment(); Double getResult(); void setComment(String comment); void setResult(Double result); boolean isComplete(); }