package bargainingchips.players; import bargainingchips.protocol.BilateralProtocol; /** * A thread between a subnegotiator of the buyer and a seller, artbitrated by a {@link BilateralProtocol} */ public class NegotiationThread { public Agent subbuyer; public Agent seller; public BilateralProtocol protocol; public NegotiationThread() { } }