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 { @JsonValue /** * This is a comment to test #390. It has a blank line in it which may cause * troubles. This comment attaches to the annotation (python decorator) and * therefore ends up after the decorator.. * * @param n */ public @NonNull String act(int n) { return "yes"; } @Override public @NonNull String toString() { return "EndNegotiation[" + "]"; } public static void main(String[] args) { new EndNegotiation3(); } }