blob: 04e12160dfba3f283dab234d05437bd9aaac764c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
class DelegateWithDeprecated {
private Bar bar;
private interface Bar {
@Deprecated
void deprecatedAnnotation();
/** @deprecated */
void deprecatedComment();
void notDeprecated();
}
@java.lang.Deprecated
@java.lang.SuppressWarnings("all")
public void deprecatedAnnotation() {
this.bar.deprecatedAnnotation();
}
@java.lang.Deprecated
@java.lang.SuppressWarnings("all")
public void deprecatedComment() {
this.bar.deprecatedComment();
}
@java.lang.SuppressWarnings("all")
public void notDeprecated() {
this.bar.notDeprecated();
}
}
|