blob: 3be24d7426bfcf398a522c469c4cd44e486770cc (
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
25
26
27
28
29
30
|
import lombok.extern.log4j.Log4j;
@lombok.extern.log4j.Log4j
class LoggerLog4j {
}
@Log4j
class LoggerLog4jWithImport {
}
@Log4j(topic="DifferentName")
class LoggerLog4jWithDifferentName {
}
@Log4j(topic=LoggerLog4jWithStaticField.TOPIC)
class LoggerLog4jWithStaticField {
static final String TOPIC = "StaticField";
}
@Log4j
enum LoggerLog4jWithEnum {
CONSTANT;
}
class LoggerLog4jWithInnerEnum {
@Log4j
enum Inner {
CONSTANT;
}
}
|