diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-03-18 21:22:59 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-03-18 21:22:59 +0100 |
commit | f341a00baa992e652f119164e24cf64699281e0d (patch) | |
tree | 709f550f2bd9093193af16128442b542f1883deb | |
parent | cb9b907839aa0c72ffa41f8a13bfab5cb1341258 (diff) | |
download | lombok-f341a00baa992e652f119164e24cf64699281e0d.tar.gz lombok-f341a00baa992e652f119164e24cf64699281e0d.tar.bz2 lombok-f341a00baa992e652f119164e24cf64699281e0d.zip |
fixed javadoc of XAnnotationHandler; they used to be interfaces but now they are abstract classes.
-rw-r--r-- | src/core/lombok/eclipse/EclipseAnnotationHandler.java | 2 | ||||
-rw-r--r-- | src/core/lombok/javac/JavacAnnotationHandler.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/eclipse/EclipseAnnotationHandler.java b/src/core/lombok/eclipse/EclipseAnnotationHandler.java index 84304339..ca9965f7 100644 --- a/src/core/lombok/eclipse/EclipseAnnotationHandler.java +++ b/src/core/lombok/eclipse/EclipseAnnotationHandler.java @@ -29,7 +29,7 @@ import lombok.core.SpiLoadUtil; * * You MUST replace 'T' with a specific annotation type, such as: * - * {@code public class HandleGetter implements EclipseAnnotationHandler<Getter>} + * {@code public class HandleGetter extends EclipseAnnotationHandler<Getter>} * * Because this generics parameter is inspected to figure out which class you're interested in. * diff --git a/src/core/lombok/javac/JavacAnnotationHandler.java b/src/core/lombok/javac/JavacAnnotationHandler.java index 169e2026..a86aa6c6 100644 --- a/src/core/lombok/javac/JavacAnnotationHandler.java +++ b/src/core/lombok/javac/JavacAnnotationHandler.java @@ -33,7 +33,7 @@ import com.sun.tools.javac.tree.JCTree.JCAnnotation; * * You MUST replace 'T' with a specific annotation type, such as: * - * {@code public class HandleGetter implements JavacAnnotationHandler<Getter>} + * {@code public class HandleGetter extends JavacAnnotationHandler<Getter>} * * Because this generics parameter is inspected to figure out which class you're interested in. * |