package testcode; import org.eclipse.jdt.annotation.NonNull; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import testcode.actions.PartyId; /** * Indicates that a party turns away from the negotiation and. * */ public class EndNegotiation2 { /** * 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 id */ @JsonCreator public EndNegotiation2(@JsonProperty("actor") @NonNull PartyId id) { } @Override public @NonNull String toString() { return "EndNegotiation[" + "]"; } }