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

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

BasicAgent

File size: 392 bytes
Line 
1package bargainingchips;
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 = 5;
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.