source:
src/main/java/bargainingchips/outcomes/Disagreement.java@
341
Last change on this file since 341 was 327, checked in by , 5 years ago | |
---|---|
File size: 224 bytes |
Line | |
---|---|
1 | package bargainingchips.outcomes; |
2 | |
3 | public class Disagreement extends Outcome |
4 | { |
5 | public Disagreement() |
6 | { |
7 | super(null); |
8 | } |
9 | |
10 | @Override |
11 | public String toString() |
12 | { |
13 | return "Disagreement (no outcome)"; |
14 | } |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.