source:
src/main/java/bargainingchips/protocol/ValidationSuccessWithDisagreement.java@
343
Last change on this file since 343 was 327, checked in by , 5 years ago | |
---|---|
File size: 335 bytes |
Line | |
---|---|
1 | package bargainingchips.protocol; |
2 | |
3 | import bargainingchips.outcomes.Disagreement; |
4 | |
5 | /** |
6 | * The offer was valid but the negotiation has ended WITHOUT a deal |
7 | */ |
8 | public class ValidationSuccessWithDisagreement extends ValidationResult |
9 | { |
10 | public ValidationSuccessWithDisagreement() |
11 | { |
12 | super(true, new Disagreement()); |
13 | } |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.