source: java2python/jackson-t/src/test/endnego/testcode/EndNegotiation.java@ 1237

Last change on this file since 1237 was 1237, checked in by wouter, 9 days ago

#390 added test program showing issue with changed empty lines. Fixed EndNegotiation tests

File size: 453 bytes
Line 
1package testcode;
2
3import org.eclipse.jdt.annotation.NonNull;
4
5import com.fasterxml.jackson.annotation.JsonCreator;
6import com.fasterxml.jackson.annotation.JsonProperty;
7
8/**
9 * Indicates that a party turns away from the negotiation and.
10 *
11 */
12public class EndNegotiation {
13 @JsonCreator
14 public EndNegotiation(@JsonProperty("actor") @NonNull String actor) {
15
16 }
17
18 @Override
19 public @NonNull String toString() {
20 return "EndNegotiation[" + "]";
21 }
22
23}
Note: See TracBrowser for help on using the repository browser.