blob: 90e5fb888b408b737e648c856f85d3e612a84195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import lombok.experimental.Wither;
class WitherDeprecated {
@Deprecated @Wither int annotation;
@Wither int javadoc;
WitherDeprecated(int annotation, int javadoc) {
super();
}
public @java.lang.Deprecated @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") WitherDeprecated withAnnotation(final int annotation) {
return ((this.annotation == annotation) ? this : new WitherDeprecated(annotation, this.javadoc));
}
public @java.lang.Deprecated @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") WitherDeprecated withJavadoc(final int javadoc) {
return ((this.javadoc == javadoc) ? this : new WitherDeprecated(this.annotation, javadoc));
}
}
|