source: java2python/jackson-t/src/test/endnego2/testcode/EndNegotiation2.java@ 1271

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

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

File size: 716 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
8import testcode.actions.PartyId;
9
10/**
11 * Indicates that a party turns away from the negotiation and.
12 *
13 */
14public class EndNegotiation2 {
15
16 /**
17 * This is a comment to test #390. It has a blank line in it which may cause
18 * troubles. This comment attaches to the annotation (python decorator) and
19 * therefore ends up after the decorator..
20 *
21 * @param id
22 */
23 @JsonCreator
24 public EndNegotiation2(@JsonProperty("actor") @NonNull PartyId id) {
25
26 }
27
28 @Override
29 public @NonNull String toString() {
30 return "EndNegotiation[" + "]";
31 }
32
33}
Note: See TracBrowser for help on using the repository browser.