blob: 89e78b8ca9c9b33e15475056aa6b02ba3d893d60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import lombok.experimental.Delegate;
class DelegateWithDeprecated {
private interface Bar {
@Deprecated void deprecatedAnnotation();
void deprecatedComment();
void notDeprecated();
}
private @Delegate Bar bar;
DelegateWithDeprecated() {
super();
}
public @java.lang.Deprecated @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") @lombok.Generated void deprecatedAnnotation() {
this.bar.deprecatedAnnotation();
}
public @java.lang.Deprecated @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") @lombok.Generated void deprecatedComment() {
this.bar.deprecatedComment();
}
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") @lombok.Generated void notDeprecated() {
this.bar.notDeprecated();
}
}
|