Last change
on this file was 1, checked in by Wouter Pasman, 7 years ago |
Initial import : Genius 9.0.0
|
File size:
420 bytes
|
Line | |
---|
1 | package genius.core.analysis.pareto;
|
---|
2 |
|
---|
3 | import genius.core.issue.Issue;
|
---|
4 | import genius.core.issue.Value;
|
---|
5 |
|
---|
6 | /**
|
---|
7 | * Contains issue value plus the utilities
|
---|
8 | */
|
---|
9 | public interface IssueValue {
|
---|
10 | /**
|
---|
11 | *
|
---|
12 | * @return the issue that is being assigned a value
|
---|
13 | */
|
---|
14 | public Issue getIssue();
|
---|
15 |
|
---|
16 | /**
|
---|
17 | *
|
---|
18 | * @return the value of the issue
|
---|
19 | */
|
---|
20 | public Value getValue();
|
---|
21 |
|
---|
22 | public Double getUtilityA();
|
---|
23 |
|
---|
24 | public Double getUtilityB();
|
---|
25 |
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.