Line | |
---|
1 | package testcode;
|
---|
2 |
|
---|
3 | import org.eclipse.jdt.annotation.NonNull;
|
---|
4 |
|
---|
5 | import com.fasterxml.jackson.annotation.JsonCreator;
|
---|
6 | import com.fasterxml.jackson.annotation.JsonProperty;
|
---|
7 |
|
---|
8 | import testcode.actions.PartyId;
|
---|
9 |
|
---|
10 | /**
|
---|
11 | * Indicates that a party turns away from the negotiation and.
|
---|
12 | *
|
---|
13 | */
|
---|
14 | public 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.