Last change
on this file was 127, checked in by Wouter Pasman, 6 years ago |
#41 ROLL BACK of rev.126 . So this version is equal to rev. 125
|
File size:
717 bytes
|
Line | |
---|
1 | package genius.core.qualitymeasures;
|
---|
2 |
|
---|
3 | /**
|
---|
4 | * Simple object used to store the information of a scenario.
|
---|
5 | *
|
---|
6 | * @author Mark Hendrikx
|
---|
7 | */
|
---|
8 | public class ScenarioInfo {
|
---|
9 | String domain;
|
---|
10 | String prefProfA;
|
---|
11 | String prefProfB;
|
---|
12 |
|
---|
13 | public ScenarioInfo(String domain) {
|
---|
14 | this.domain = domain;
|
---|
15 | }
|
---|
16 |
|
---|
17 | public String getDomain() {
|
---|
18 | return domain;
|
---|
19 | }
|
---|
20 |
|
---|
21 | public void setDomain(String domain) {
|
---|
22 | this.domain = domain;
|
---|
23 | }
|
---|
24 |
|
---|
25 | public String getPrefProfA() {
|
---|
26 | return prefProfA;
|
---|
27 | }
|
---|
28 |
|
---|
29 | public void setPrefProfA(String prefProfA) {
|
---|
30 | this.prefProfA = prefProfA;
|
---|
31 | }
|
---|
32 |
|
---|
33 | public String getPrefProfB() {
|
---|
34 | return prefProfB;
|
---|
35 | }
|
---|
36 |
|
---|
37 | public void setPrefProfB(String prefProfB) {
|
---|
38 | this.prefProfB = prefProfB;
|
---|
39 | }
|
---|
40 |
|
---|
41 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.