source: src/main/java/agents/anac/y2010/Southampton/utils/EvaluatorHypothesis.java

Last change on this file was 1, checked in by Wouter Pasman, 6 years ago

Initial import : Genius 9.0.0

File size: 573 bytes
Line 
1package agents.anac.y2010.Southampton.utils;
2
3
4import genius.core.utility.Evaluator;
5
6/**
7 * @author Colin Williams
8 *
9 */
10public class EvaluatorHypothesis extends Hypothesis {
11 private String description;
12 private Evaluator evaluator;
13
14 public EvaluatorHypothesis(Evaluator evaluator) {
15 this.evaluator = evaluator;
16 }
17
18 public Evaluator getEvaluator() {
19 return this.evaluator;
20 }
21
22 public String toString() {
23 return this.description;
24 }
25
26 public void setDesc(String value) {
27 this.description = value;
28 }
29
30 public String getDesc() {
31 return this.description;
32 }
33}
Note: See TracBrowser for help on using the repository browser.