source: src/main/java/bargainingchips/NegotiationContext.java@ 324

Last change on this file since 324 was 316, checked in by Tim Baarslag, 5 years ago

new packages complete

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