Newer
Older
marking / src / model / Criterion.java
Mark on 26 Aug 2014 884 bytes A bunch of improvements.
package model;

/**
 *
 * @author mark
 */
public class Criterion {

	private final String criterion;
	private final String description;
	private final Integer min;
	private final Integer max;

	private Double result;
	private String comment;

	public Criterion(String criterion, String description, Integer min, Integer max) {
		this.criterion = criterion;
		this.description = description;
		this.min = min;
		this.max = max;
	}

	public String getCriterion() {
		return criterion;
	}

	public String getDescription() {
		return description;
	}

	public Double getResult() {
		return result;
	}

	public void setResult(Double result) {
		this.result = result;
	}

	public String getComment() {
		return comment;
	}

	public void setComment(String comment) {
		this.comment = comment;
	}

	public Integer getMin() {
		return min;
	}

	public Integer getMax() {
		return max;
	}



}