1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//platform !ecj: Javadoc copying not supported on ecj import lombok.With; class WithMethodMarkedDeprecated { @Deprecated @With int annotation; /** * @deprecated */ @With int javadoc; WithMethodMarkedDeprecated(int annotation, int javadoc) { } }