Last change
on this file since 84 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
415 bytes
|
Line | |
---|
1 | package agents.qoagent;
|
---|
2 |
|
---|
3 | import java.util.ArrayList;
|
---|
4 |
|
---|
5 | public class FullUtility
|
---|
6 | {
|
---|
7 | public double dTimeEffect;
|
---|
8 | public double dStatusQuoValue;
|
---|
9 | public double dOptOutValue;
|
---|
10 | public ArrayList<UtilityDetails> lstUtilityDetails; // list of UtilityDetails
|
---|
11 |
|
---|
12 | public FullUtility()
|
---|
13 | {
|
---|
14 | dTimeEffect = 0;
|
---|
15 | dStatusQuoValue = 0;
|
---|
16 | dOptOutValue = 0;
|
---|
17 | lstUtilityDetails = new ArrayList<UtilityDetails>();
|
---|
18 | }
|
---|
19 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.