Line | |
---|
1 | package testcode;
|
---|
2 |
|
---|
3 | import org.eclipse.jdt.annotation.NonNull;
|
---|
4 |
|
---|
5 | import com.fasterxml.jackson.annotation.JsonValue;
|
---|
6 |
|
---|
7 | /**
|
---|
8 | * Indicates that a party turns away from the negotiation and.
|
---|
9 | *
|
---|
10 | */
|
---|
11 | public class EndNegotiation3 {
|
---|
12 |
|
---|
13 | public EndNegotiation3(int n) {
|
---|
14 |
|
---|
15 | }
|
---|
16 |
|
---|
17 | @JsonValue
|
---|
18 | /**
|
---|
19 | * This is a comment to test #390. This javadoc can not be attached to
|
---|
20 | * the @NonNull
|
---|
21 | *
|
---|
22 | * @param n
|
---|
23 | */
|
---|
24 | public @NonNull Integer getN() {
|
---|
25 | return 1;
|
---|
26 | }
|
---|
27 |
|
---|
28 | @Override
|
---|
29 | public @NonNull String toString() {
|
---|
30 | return "EndNegotiation[" + "]";
|
---|
31 | }
|
---|
32 |
|
---|
33 | public static void main(String[] args) {
|
---|
34 | new EndNegotiation3(1);
|
---|
35 | }
|
---|
36 |
|
---|
37 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.