Rev | Line | |
---|
[309] | 1 | package onetomany.bargainingchipsgame;
|
---|
| 2 |
|
---|
[310] | 3 | /**
|
---|
| 4 | * Describes the context of the negotiation, such as deadlines, possible offers, etc.
|
---|
| 5 | */
|
---|
[309] | 6 | public class NegotiationContext
|
---|
| 7 | {
|
---|
| 8 | public static final int DEADLINE = 20;
|
---|
| 9 | OutcomeSpace outcomeSpace;
|
---|
| 10 |
|
---|
| 11 | public NegotiationContext()
|
---|
| 12 | {
|
---|
[310] | 13 | outcomeSpace = new OutcomeSpace();
|
---|
[309] | 14 | }
|
---|
| 15 |
|
---|
| 16 | public OutcomeSpace getOutcomeSpace()
|
---|
| 17 | {
|
---|
| 18 | return outcomeSpace;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.