Last change
on this file since 203 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:
456 bytes
|
Line | |
---|
1 | package agents.qoagent2;
|
---|
2 |
|
---|
3 | import java.util.ArrayList;
|
---|
4 | import agents.qoagent2.UtilityDetails;
|
---|
5 |
|
---|
6 | public class FullUtility
|
---|
7 | {
|
---|
8 | public double dTimeEffect;
|
---|
9 | public double dStatusQuoValue;
|
---|
10 | public double dOptOutValue;
|
---|
11 | public ArrayList<UtilityDetails> lstUtilityDetails; // list of UtilityDetails
|
---|
12 |
|
---|
13 | public FullUtility()
|
---|
14 | {
|
---|
15 | dTimeEffect = 0;
|
---|
16 | dStatusQuoValue = 0;
|
---|
17 | dOptOutValue = 0;
|
---|
18 | lstUtilityDetails = new ArrayList<UtilityDetails>();
|
---|
19 | }
|
---|
20 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.