source: src/main/java/bargainingchips/players/NegotiationThread.java@ 337

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

New Buyer class with a Coordinator and List<NegotiationThread>.

NegotiationThreads make it possible to connnect with multiple sellers

File size: 373 bytes
Line 
1package bargainingchips.players;
2
3import bargainingchips.protocol.BilateralProtocol;
4
5/**
6 * A thread between a subnegotiator of the buyer and a seller, artbitrated by a {@link BilateralProtocol}
7 */
8public 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.