diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-16 10:16:03 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-16 10:16:03 +0200 |
commit | 2d3b98e847b9dc1878b657de97fce2f54104776d (patch) | |
tree | a66995df3efe3d1f4c5075ec098a1b7114aabb4d /src/lombok/eclipse/EclipseAnnotationHandler.java | |
parent | b5c8b725655d2ad8a715cfb1fbbdf25dbdcd4ceb (diff) | |
download | lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.gz lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.bz2 lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.zip |
Switched all use of <code></code> in javadoc to {@code}.
Diffstat (limited to 'src/lombok/eclipse/EclipseAnnotationHandler.java')
-rw-r--r-- | src/lombok/eclipse/EclipseAnnotationHandler.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/eclipse/EclipseAnnotationHandler.java b/src/lombok/eclipse/EclipseAnnotationHandler.java index 96626cca..aaa57603 100644 --- a/src/lombok/eclipse/EclipseAnnotationHandler.java +++ b/src/lombok/eclipse/EclipseAnnotationHandler.java @@ -28,11 +28,11 @@ import lombok.core.AnnotationValues; * * You MUST replace 'T' with a specific annotation type, such as: * - * <code>public class HandleGetter implements EclipseAnnotationHandler<<b>Getter</b>></code> + * {@code public class HandleGetter implements EclipseAnnotationHandler<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>EclipseAnnotationHandler</code>. + * You also need to register yourself via SPI discovery as being an implementation of {@code EclipseAnnotationHandler}. */ public interface EclipseAnnotationHandler<T extends java.lang.annotation.Annotation> { /** @@ -47,8 +47,8 @@ public interface EclipseAnnotationHandler<T extends java.lang.annotation.Annotat * @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, org.eclipse.jdt.internal.compiler.ast.Annotation ast, EclipseNode annotationNode); } |