package testcode; import org.eclipse.jdt.annotation.NonNull; import com.fasterxml.jackson.annotation.JsonValue; /** * Indicates that a party turns away from the negotiation and. * */ public class EndNegotiation3 { public EndNegotiation3(int n) { } @JsonValue /** * This is a comment to test #390. This javadoc can not be attached to * the @NonNull * * @param n */ public @NonNull Integer getN() { return 1; } @Override public @NonNull String toString() { return "EndNegotiation[" + "]"; } public static void main(String[] args) { new EndNegotiation3(1); } }