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

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

BasicAgent

File size: 392 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{
[330]8 public static final int DEADLINE = 5;
[315]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.