mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 10:23:55 +00:00
12 lines
139 B
Java
12 lines
139 B
Java
import lombok.Setter;
|
|
class SetterDeprecated {
|
|
|
|
@Deprecated
|
|
@Setter int annotation;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
@Setter int javadoc;
|
|
}
|