source:
src/main/java/bargainingchips/players/NegotiationThread.java@
343
Last change on this file since 343 was 331, checked in by , 5 years ago | |
---|---|
File size: 373 bytes |
Rev | Line | |
---|---|---|
[331] | 1 | package bargainingchips.players; |
2 | ||
3 | import bargainingchips.protocol.BilateralProtocol; | |
4 | ||
5 | /** | |
6 | * A thread between a subnegotiator of the buyer and a seller, artbitrated by a {@link BilateralProtocol} | |
7 | */ | |
8 | public class NegotiationThread | |
9 | { | |
10 | public Agent subbuyer; | |
11 | public Agent seller; | |
12 | public BilateralProtocol protocol; | |
13 | ||
14 | public NegotiationThread() | |
15 | { | |
16 | } | |
17 | } |
Note:
See TracBrowser
for help on using the repository browser.