Last change
on this file since 209 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
362 bytes
|
Line | |
---|
1 | package genius.gui.chart;
|
---|
2 |
|
---|
3 | /**
|
---|
4 | * Stores a tuple <Turn number, Utility>.
|
---|
5 | *
|
---|
6 | * @author W.Pasman
|
---|
7 | *
|
---|
8 | */
|
---|
9 | public class TurnAndUtil {
|
---|
10 | private Double turn;
|
---|
11 | private Double util;
|
---|
12 |
|
---|
13 | public TurnAndUtil(Double turn, Double util) {
|
---|
14 | this.turn = turn;
|
---|
15 | this.util = util;
|
---|
16 | }
|
---|
17 |
|
---|
18 | public Double getTurn() {
|
---|
19 | return turn;
|
---|
20 | }
|
---|
21 |
|
---|
22 | public Double getUtil() {
|
---|
23 | return util;
|
---|
24 | }
|
---|
25 |
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.