mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
18 lines
373 B
Java
18 lines
373 B
Java
import lombok.extern.apachecommons.CommonsLog;
|
|
|
|
@lombok.extern.apachecommons.CommonsLog
|
|
class LoggerCommons {
|
|
}
|
|
|
|
@CommonsLog
|
|
class LoggerCommonsWithImport {
|
|
}
|
|
|
|
@CommonsLog(topic="DifferentName")
|
|
class LoggerCommonsWithDifferentName {
|
|
}
|
|
|
|
@CommonsLog(topic=LoggerCommonsWithStaticField.TOPIC)
|
|
class LoggerCommonsWithStaticField {
|
|
static final String TOPIC = "StaticField";
|
|
} |