diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-11-17 19:12:01 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-11-17 19:12:01 +0100 |
commit | 58851b4c6e96a51d1ac298c7ed85efac6ffe8335 (patch) | |
tree | b0ca24a4b8d5c04d70ada3bebb2308f3c74160b3 /src/core/lombok/experimental/FieldDefaults.java | |
parent | e95bb83e06510af7e68fc3eb38163522d6f75bce (diff) | |
download | lombok-58851b4c6e96a51d1ac298c7ed85efac6ffe8335.tar.gz lombok-58851b4c6e96a51d1ac298c7ed85efac6ffe8335.tar.bz2 lombok-58851b4c6e96a51d1ac298c7ed85efac6ffe8335.zip |
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.
Diffstat (limited to 'src/core/lombok/experimental/FieldDefaults.java')
-rw-r--r-- | src/core/lombok/experimental/FieldDefaults.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/lombok/experimental/FieldDefaults.java b/src/core/lombok/experimental/FieldDefaults.java index 5bbf92dc..8a3fb534 100644 --- a/src/core/lombok/experimental/FieldDefaults.java +++ b/src/core/lombok/experimental/FieldDefaults.java @@ -30,12 +30,13 @@ import lombok.AccessLevel; /** * Adds modifiers to each field in the type with this annotation. + * <p> + * Complete documentation is found at <a href="http://projectlombok.org/features/experimental/FieldDefaults.html">the project lombok features page for @FieldDefaults</a>. + * <p> * If {@code makeFinal} is {@code true}, then each field that is not annotated with {@code @NonFinal} will have the {@code final} modifier added. * <p> * If {@code level} is set, then each field that is package private (i.e. no access modifier) and does not have the {@code @PackagePrivate} annotation will * have the appropriate access level modifier added. - * <p> - * The only fields that are skipped are those that start with a '$'; everything else, including static, volatile, and transient fields, are modified. */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) |