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/core | |
| 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/core')
| -rw-r--r-- | src/lombok/core/AST.java | 4 | ||||
| -rw-r--r-- | src/lombok/core/AnnotationValues.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/core/AST.java b/src/lombok/core/AST.java index ef752d1a..b43947c4 100644 --- a/src/lombok/core/AST.java +++ b/src/lombok/core/AST.java @@ -205,9 +205,9 @@ public abstract class AST<N> { protected abstract boolean calculateIsStructurallySignificant(); /** - * Convenient shortcut to the owning JavacAST object's getNodeFor method. + * Convenient shortcut to the owning JavacAST object's get method. * - * @see AST#getNodeFor() + * @see AST#get(Object) */ public Node getNodeFor(N obj) { return AST.this.get(obj); diff --git a/src/lombok/core/AnnotationValues.java b/src/lombok/core/AnnotationValues.java index ee434f1f..7056b02f 100644 --- a/src/lombok/core/AnnotationValues.java +++ b/src/lombok/core/AnnotationValues.java @@ -287,7 +287,7 @@ public class AnnotationValues<A extends Annotation> { } /** - * Convenience method to return the first result in a {@link getRawExpressions(String)} call. + * Convenience method to return the first result in a {@link #getRawExpressions(String)} call. * * You should use this method if the annotation method is not an array type. */ @@ -311,7 +311,7 @@ public class AnnotationValues<A extends Annotation> { } /** - * Convenience method to return the first result in a {@link getProbableFQType(String)} call. + * Convenience method to return the first result in a {@link #getProbableFQType(String)} call. * * You should use this method if the annotation method is not an array type. */ |
