mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 06:21:53 +00:00
15 lines
432 B
Java
15 lines
432 B
Java
import lombok.Setter;
|
|
class SetterDeprecated {
|
|
@Deprecated @Setter int annotation;
|
|
@Setter int javadoc;
|
|
SetterDeprecated() {
|
|
super();
|
|
}
|
|
public @java.lang.Deprecated @java.lang.SuppressWarnings("all") void setAnnotation(final int annotation) {
|
|
this.annotation = annotation;
|
|
}
|
|
public @java.lang.Deprecated @java.lang.SuppressWarnings("all") void setJavadoc(final int javadoc) {
|
|
this.javadoc = javadoc;
|
|
}
|
|
}
|