aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/commons/Log.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2010-11-06 13:30:22 +0100
committerRoel Spilker <r.spilker@gmail.com>2010-11-06 13:30:22 +0100
commitc3eddf66cfb16d5d27c7a9562ea539344bfcb2d6 (patch)
treecfc3e1d657b356095eaf85634eab0df5a6e31c3d /src/core/lombok/commons/Log.java
parent7219b78b4d201cba116b101a25a91006767a4c7f (diff)
downloadlombok-c3eddf66cfb16d5d27c7a9562ea539344bfcb2d6.tar.gz
lombok-c3eddf66cfb16d5d27c7a9562ea539344bfcb2d6.tar.bz2
lombok-c3eddf66cfb16d5d27c7a9562ea539344bfcb2d6.zip
Added support for Log4J, Commons and JUL in the javac handler
Diffstat (limited to 'src/core/lombok/commons/Log.java')
-rw-r--r--src/core/lombok/commons/Log.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/core/lombok/commons/Log.java b/src/core/lombok/commons/Log.java
new file mode 100644
index 00000000..974979b7
--- /dev/null
+++ b/src/core/lombok/commons/Log.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright © 2010 Reinier Zwitserloot, Roel Spilker and Robbert Jan Grootjans.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+package lombok.commons;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Retention(RetentionPolicy.SOURCE)
+@Target(ElementType.TYPE)
+public @interface Log {
+
+ Class<?> value() default void.class;
+}