source:
src/main/java/bargainingchips/outcomes/Agreement.java@
341
Last change on this file since 341 was 327, checked in by , 5 years ago | |
---|---|
File size: 257 bytes |
Rev | Line | |
---|---|---|
[327] | 1 | package bargainingchips.outcomes; |
[318] | 2 | |
3 | import bargainingchips.Bundle; | |
4 | ||
[327] | 5 | public class Agreement extends Outcome |
[318] | 6 | { |
7 | public Agreement(Bundle b) | |
8 | { | |
[327] | 9 | super(b); |
[318] | 10 | } |
[319] | 11 | |
12 | @Override | |
13 | public String toString() | |
14 | { | |
15 | return "Agreement: " + getBundle(); | |
16 | } | |
[318] | 17 | } |
Note:
See TracBrowser
for help on using the repository browser.