From 58851b4c6e96a51d1ac298c7ed85efac6ffe8335 Mon Sep 17 00:00:00 2001
From: Reinier Zwitserloot <reinier@zwitserloot.com>
Date: Sat, 17 Nov 2012 19:12:01 +0100
Subject: Updated the javadoc of each and every feature annotation that lombok
 has:  * Removed most documentation and instead put in a link to the much more
 up to date and extensive documentation at http://projectlombok.org/features 
 * Getting ahead of ourselves a little, added notes on
 onConstructor/onParam/onMethod which we are about to add in the next few
 commits.  * Updated copyrights to 2012.

---
 src/core/lombok/extern/apachecommons/CommonsLog.java | 3 +++
 src/core/lombok/extern/java/Log.java                 | 3 +++
 src/core/lombok/extern/log4j/Log4j.java              | 3 +++
 src/core/lombok/extern/slf4j/Slf4j.java              | 3 +++
 src/core/lombok/extern/slf4j/XSlf4j.java             | 3 +++
 5 files changed, 15 insertions(+)

(limited to 'src/core/lombok/extern')

diff --git a/src/core/lombok/extern/apachecommons/CommonsLog.java b/src/core/lombok/extern/apachecommons/CommonsLog.java
index 3fb178c7..f178ae05 100644
--- a/src/core/lombok/extern/apachecommons/CommonsLog.java
+++ b/src/core/lombok/extern/apachecommons/CommonsLog.java
@@ -28,6 +28,9 @@ import java.lang.annotation.Target;
 
 /**
  * Causes lombok to generate a logger field.
+ * <p>
+ * Complete documentation is found at <a href="http://projectlombok.org/features/Log.html">the project lombok features page for lombok log annotations</a>.
+ * <p>
  * Example:
  * <pre>
  * &#64;CommonsLog
diff --git a/src/core/lombok/extern/java/Log.java b/src/core/lombok/extern/java/Log.java
index dba83c60..90c62956 100644
--- a/src/core/lombok/extern/java/Log.java
+++ b/src/core/lombok/extern/java/Log.java
@@ -28,6 +28,9 @@ import java.lang.annotation.Target;
 
 /**
  * Causes lombok to generate a logger field.
+ * <p>
+ * Complete documentation is found at <a href="http://projectlombok.org/features/Log.html">the project lombok features page for lombok log annotations</a>.
+ * <p>
  * Example:
  * <pre>
  * &#64;Log
diff --git a/src/core/lombok/extern/log4j/Log4j.java b/src/core/lombok/extern/log4j/Log4j.java
index 3de291b6..9cfc5839 100644
--- a/src/core/lombok/extern/log4j/Log4j.java
+++ b/src/core/lombok/extern/log4j/Log4j.java
@@ -28,6 +28,9 @@ import java.lang.annotation.Target;
 
 /**
  * Causes lombok to generate a logger field.
+ * <p>
+ * Complete documentation is found at <a href="http://projectlombok.org/features/Log.html">the project lombok features page for lombok log annotations</a>.
+ * <p>
  * Example:
  * <pre>
  * &#64;Log4j
diff --git a/src/core/lombok/extern/slf4j/Slf4j.java b/src/core/lombok/extern/slf4j/Slf4j.java
index fababb83..14dbcba6 100644
--- a/src/core/lombok/extern/slf4j/Slf4j.java
+++ b/src/core/lombok/extern/slf4j/Slf4j.java
@@ -27,6 +27,9 @@ import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 /**
  * Causes lombok to generate a logger field.
+ * <p>
+ * Complete documentation is found at <a href="http://projectlombok.org/features/Log.html">the project lombok features page for lombok log annotations</a>.
+ * <p>
  * Example:
  * <pre>
  * &#64;Slf4j
diff --git a/src/core/lombok/extern/slf4j/XSlf4j.java b/src/core/lombok/extern/slf4j/XSlf4j.java
index 73fbd74c..bdf8a62c 100644
--- a/src/core/lombok/extern/slf4j/XSlf4j.java
+++ b/src/core/lombok/extern/slf4j/XSlf4j.java
@@ -27,6 +27,9 @@ import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 /**
  * Causes lombok to generate a logger field.
+ * <p>
+ * Complete documentation is found at <a href="http://projectlombok.org/features/Log.html">the project lombok features page for lombok log annotations</a>.
+ * <p>
  * Example:
  * <pre>
  * &#64;XSlf4j
-- 
cgit