From 2bd22a38ca1b88e19e73b210b920e8626e797aaa Mon Sep 17 00:00:00 2001 From: Jan Materne Date: Fri, 3 Jun 2005 17:18:11 +0000 Subject: [PATCH] more JavaDoc happiness :-) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278401 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/MacroDef.java | 4 ++-- .../org/apache/tools/ant/types/resources/URLResource.java | 4 ++-- src/main/org/apache/tools/ant/util/IdentityStack.java | 7 +++---- .../ant/util/facade/ImplementationSpecificArgument.java | 4 ++-- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/MacroDef.java b/src/main/org/apache/tools/ant/taskdefs/MacroDef.java index 034e289b1..e690115a9 100644 --- a/src/main/org/apache/tools/ant/taskdefs/MacroDef.java +++ b/src/main/org/apache/tools/ant/taskdefs/MacroDef.java @@ -473,7 +473,7 @@ public class MacroDef extends AntlibDefinition { /** * Get the default value for this attibute. - * This returns the name "prefix#this classname#. + * This returns the name "prefix#this classname#". * @return the generated name */ public String getDefault() { @@ -871,4 +871,4 @@ public class MacroDef extends AntlibDefinition { return o.hashCode(); } } -} +} \ No newline at end of file diff --git a/src/main/org/apache/tools/ant/types/resources/URLResource.java b/src/main/org/apache/tools/ant/types/resources/URLResource.java index df8e4f2c7..b5c320979 100755 --- a/src/main/org/apache/tools/ant/types/resources/URLResource.java +++ b/src/main/org/apache/tools/ant/types/resources/URLResource.java @@ -102,7 +102,7 @@ public class URLResource extends Resource { /** * Set the resource name with which to expose a Java resource. * @param s the Java resource name. - * @see java.lang.ClassLoader#getResource() + * @see java.lang.ClassLoader#getResource(String) */ public synchronized void setJavaResource(String s) { checkAttributesAllowed(); @@ -370,4 +370,4 @@ public class URLResource extends Resource { } } -} +} \ No newline at end of file diff --git a/src/main/org/apache/tools/ant/util/IdentityStack.java b/src/main/org/apache/tools/ant/util/IdentityStack.java index f0a024b61..7bb60d916 100755 --- a/src/main/org/apache/tools/ant/util/IdentityStack.java +++ b/src/main/org/apache/tools/ant/util/IdentityStack.java @@ -57,7 +57,7 @@ public class IdentityStack extends Stack { /** * Override methods that use .equals() comparisons on elements. * @param o the Object to search for. - * @see Vector#contains(Object) + * @see java.util.Vector#contains(Object) */ public synchronized boolean contains(Object o) { return indexOf(o) >= 0; @@ -67,7 +67,7 @@ public class IdentityStack extends Stack { * Override methods that use .equals() comparisons on elements. * @param o the Object to search for. * @param pos the position from which to search. - * @see Vector#indexOf(Object, int) + * @see java.util.Vector#indexOf(Object, int) */ public synchronized int indexOf(Object o, int pos) { for (int i = pos; i < size(); i++) @@ -83,7 +83,7 @@ public class IdentityStack extends Stack { * Override methods that use .equals() comparisons on elements. * @param o the Object to search for. * @param pos the position from which to search (backward). - * @see Vector#indexOf(Object, int) + * @see java.util.Vector#indexOf(Object, int) */ public synchronized int lastIndexOf(Object o, int pos) { for (int i = pos; i >= 0; i--) @@ -96,4 +96,3 @@ public class IdentityStack extends Stack { } } - diff --git a/src/main/org/apache/tools/ant/util/facade/ImplementationSpecificArgument.java b/src/main/org/apache/tools/ant/util/facade/ImplementationSpecificArgument.java index 1b43cdbbe..bc789bf79 100644 --- a/src/main/org/apache/tools/ant/util/facade/ImplementationSpecificArgument.java +++ b/src/main/org/apache/tools/ant/util/facade/ImplementationSpecificArgument.java @@ -45,7 +45,7 @@ public class ImplementationSpecificArgument extends Commandline.Argument { /** * Return the parts this Argument consists of, if the * implementation matches the chosen implementation. - * @see Commandline.Argument#getParts() + * @see org.apache.tools.ant.types.Commandline.Argument#getParts() * @param chosenImpl the implementation to check against. * @return the parts if the implemention matches or an zero length * array if not. @@ -57,4 +57,4 @@ public class ImplementationSpecificArgument extends Commandline.Argument { return new String[0]; } } -} +} \ No newline at end of file