source: src/main/java/bargainingchips/actions/Agreement.java@ 324

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

validate gives a ValidationResult

File size: 269 bytes
Line 
1package bargainingchips.actions;
2
3import bargainingchips.Bundle;
4
5public class Agreement extends Offer
6{
7 public Agreement(Bundle b)
8 {
9 super(b, OfferType.END);
10 }
11
12 @Override
13 public String toString()
14 {
15 return "Agreement: " + getBundle();
16 }
17}
Note: See TracBrowser for help on using the repository browser.