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