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