aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/LoggerJul.java
blob: 8aa4f59a94572f553c25f6a3bf7fcd45dd37d7ec (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
import lombok.extern.java.Log;
@lombok.extern.java.Log class LoggerJul {
  private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJul.class.getName());
  <clinit>() {
  }
  LoggerJul() {
    super();
  }
}
@Log class LoggerJulWithImport {
  private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJulWithImport.class.getName());
  <clinit>() {
  }
  LoggerJulWithImport() {
    super();
  }
}
@Log(topic = "DifferentName") class LoggerJulWithDifferentName {
  private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger("DifferentName");
  <clinit>() {
  }
  LoggerJulWithDifferentName() {
    super();
  }
}