diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-06 06:08:05 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-06 06:08:05 +0200 |
commit | 8534a8e0a552f21ad6479e94fad8db36e67d44d5 (patch) | |
tree | bfd4c5eadd72b306fd1e2a488fc977917f80bccd /src/lombok/eclipse/HandlerLibrary.java | |
parent | 527b992a074c1c65727bc52c820d40340f074a6b (diff) | |
download | lombok-8534a8e0a552f21ad6479e94fad8db36e67d44d5.tar.gz lombok-8534a8e0a552f21ad6479e94fad8db36e67d44d5.tar.bz2 lombok-8534a8e0a552f21ad6479e94fad8db36e67d44d5.zip |
Fixed javadoc problems, and added a javadoc target to the build script.
Diffstat (limited to 'src/lombok/eclipse/HandlerLibrary.java')
-rw-r--r-- | src/lombok/eclipse/HandlerLibrary.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lombok/eclipse/HandlerLibrary.java b/src/lombok/eclipse/HandlerLibrary.java index b319f580..8ee7d032 100644 --- a/src/lombok/eclipse/HandlerLibrary.java +++ b/src/lombok/eclipse/HandlerLibrary.java @@ -146,11 +146,11 @@ public class HandlerLibrary { * * The HandlerLibrary will attempt to guess if the given annotation node represents a lombok annotation. * For example, if <code>lombok.*</code> is in the import list, then this method will guess that - * <code>Getter</code> refers to <code>lombok.Getter</code>, presuming that {@link lombok.javac.handlers.HandleGetter} + * <code>Getter</code> refers to <code>lombok.Getter</code>, presuming that {@link lombok.eclipse.handlers.HandleGetter} * has been loaded. * - * @param unit The Compilation Unit that contains the Annotation AST Node. - * @param node The Lombok AST Node representing the Annotation AST Node. + * @param ast The Compilation Unit that contains the Annotation AST Node. + * @param annotationNode The Lombok AST Node representing the Annotation AST Node. * @param annotation 'node.get()' - convenience parameter. */ public boolean handle(CompilationUnitDeclaration ast, EclipseAST.Node annotationNode, @@ -198,13 +198,13 @@ public class HandlerLibrary { * random right now. This lack of order is particularly annoying for the <code>PrintAST</code> annotation, * which is almost always intended to run last. Hence, this hack, which lets it in fact run last. * - * {@see #skipAllButPrintAST} + * @see #skipAllButPrintAST() */ public void skipPrintAST() { skipPrintAST = true; } - /** {@see #skipPrintAST} */ + /** @see #skipPrintAST() */ public void skipAllButPrintAST() { skipPrintAST = false; } |