aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/LoggerJBossLog.java
blob: c47f6c9e1c2a40839fb1120988363a719f1f0bc5 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import lombok.extern.jbosslog.JBossLog;
@lombok.extern.jbosslog.JBossLog class LoggerJBossLog {
  private static final org.jboss.logging.Logger log = org.jboss.logging.Logger.getLogger(LoggerJBossLog.class);
  <clinit>() {
  }
  LoggerJBossLog() {
    super();
  }
}
@JBossLog class LoggerJBossLogWithImport {
  private static final org.jboss.logging.Logger log = org.jboss.logging.Logger.getLogger(LoggerJBossLogWithImport.class);
  <clinit>() {
  }
  LoggerJBossLogWithImport() {
    super();
  }
}
class LoggerJBossLogOuter {
  static @lombok.extern.jbosslog.JBossLog class Inner {
    private static final org.jboss.logging.Logger log = org.jboss.logging.Logger.getLogger(Inner.class);
    <clinit>() {
    }
    Inner() {
      super();
    }
  }
  LoggerJBossLogOuter() {
    super();
  }
}
@JBossLog(topic = "DifferentLogger") class LoggerJBossLogWithDifferentLoggerName {
  private static final org.jboss.logging.Logger log = org.jboss.logging.Logger.getLogger("DifferentLogger");
  <clinit>() {
  }
  LoggerJBossLogWithDifferentLoggerName() {
    super();
  }
}
@JBossLog(topic = LoggerJBossLogWithStaticField.TOPIC) class LoggerJBossLogWithStaticField {
  private static final org.jboss.logging.Logger log = org.jboss.logging.Logger.getLogger(LoggerJBossLogWithStaticField.TOPIC);
  static final String TOPIC = "StaticField";
  <clinit>() {
  }
  LoggerJBossLogWithStaticField() {
    super();
  }
}