aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/javac/JavacAnnotationHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/lombok/javac/JavacAnnotationHandler.java')
-rw-r--r--src/lombok/javac/JavacAnnotationHandler.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/javac/JavacAnnotationHandler.java b/src/lombok/javac/JavacAnnotationHandler.java
index 84302a74..5b6fe4ce 100644
--- a/src/lombok/javac/JavacAnnotationHandler.java
+++ b/src/lombok/javac/JavacAnnotationHandler.java
@@ -32,11 +32,11 @@ 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&lt;<b>Getter</b>&gt;</code>
+ * {@code public class HandleGetter implements JavacAnnotationHandler<Getter>}
*
* Because this generics parameter is inspected to figure out which class you're interested in.
*
- * You also need to register yourself via SPI discovery as being an implementation of <code>JavacAnnotationHandler</code>.
+ * You also need to register yourself via SPI discovery as being an implementation of {@code JavacAnnotationHandler}.
*/
public interface JavacAnnotationHandler<T extends Annotation> {
/**
@@ -51,8 +51,8 @@ public interface JavacAnnotationHandler<T extends Annotation> {
* @param annotationNode The Lombok AST wrapper around the 'ast' parameter. You can use this object
* to travel back up the chain (something javac AST can't do) to the parent of the annotation, as well
* as access useful methods such as generating warnings or errors focused on the annotation.
- * @return <code>true</code> if you don't want to be called again about this annotation during this
- * compile session (you've handled it), or <code>false</code> to indicate you aren't done yet.
+ * @return {@code true} if you don't want to be called again about this annotation during this
+ * compile session (you've handled it), or {@code false} to indicate you aren't done yet.
*/
boolean handle(AnnotationValues<T> annotation, JCAnnotation ast, JavacNode annotationNode);
}