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