source: src/main/java/onetomany/bargainingchipsgame/interactions/OfferBy.java@ 307

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

abstract class BilateralProtocol created

File size: 311 bytes
RevLine 
[307]1package onetomany.bargainingchipsgame.interactions;
2/**
3 * An offer by a certain entity (Agent) with unique id.
4 */
5public class OfferBy extends Offer
6{
7 private String id;
8
9 public OfferBy(String id, Offer o)
10 {
11 super(o);
12 this.id = id;
13 }
14
15 public String getId()
16 {
17 return id;
18 }
19}
Note: See TracBrowser for help on using the repository browser.