Newer
Older
marking / src / model / Criterion.java
Mark on 6 Jun 2014 674 bytes Initial commit.
package model;

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

	private final String criterion;
	private final String description;

	private Double result;
	private String comment;

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

	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;
	}

}