source: src/main/java/genius/core/actions/EndNegotiationWithAnOffer.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 497 bytes
Line 
1package genius.core.actions;
2
3import genius.core.AgentID;
4import genius.core.Bid;
5
6/**
7 * This action is used by parties to indicate they want not to continue after
8 * this last offer. Immutable.
9 *
10 * @author Reyhan
11 */
12
13public class EndNegotiationWithAnOffer extends DefaultActionWithBid {
14
15 public EndNegotiationWithAnOffer(AgentID party, Bid bid) {
16 super(party, bid);
17 }
18
19 public String toString() {
20 return "(End Negotiation with Offer: " + getContent() + ")";
21 }
22}
Note: See TracBrowser for help on using the repository browser.