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 |
Line | |
---|---|
1 | package bargainingchips.outcomes; |
2 | |
3 | import bargainingchips.Bundle; |
4 | |
5 | public class Agreement extends Outcome |
6 | { |
7 | public Agreement(Bundle b) |
8 | { |
9 | super(b); |
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.