source: src/main/java/genius/core/analysis/pareto/IssueValue.java

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 
1package genius.core.analysis.pareto;
2
3import genius.core.issue.Issue;
4import genius.core.issue.Value;
5
6/**
7 * Contains issue value plus the utilities
8 */
9public 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.