mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 22:23:00 +00:00
13 lines
232 B
Java
13 lines
232 B
Java
import lombok.Delegate;
|
|
|
|
class DelegateWithDeprecated {
|
|
@Delegate private Bar bar;
|
|
|
|
private interface Bar {
|
|
@Deprecated
|
|
void deprecatedAnnotation();
|
|
/** @deprecated */
|
|
void deprecatedComment();
|
|
void notDeprecated();
|
|
}
|
|
} |