jhm 2005/06/03 10:18:11 Modified: src/main/org/apache/tools/ant/taskdefs MacroDef.java src/main/org/apache/tools/ant/types/resources URLResource.java src/main/org/apache/tools/ant/util IdentityStack.java src/main/org/apache/tools/ant/util/facade ImplementationSpecificArgument.java Log: more JavaDoc happiness :-) Revision Changes Path 1.34 +2 -2 ant/src/main/org/apache/tools/ant/taskdefs/MacroDef.java Index: MacroDef.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/MacroDef.java,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- MacroDef.java 30 May 2005 10:04:42 -0000 1.33 +++ MacroDef.java 3 Jun 2005 17:18:11 -0000 1.34 @@ -473,7 +473,7 @@ /** * Get the default value for this attibute. - * This returns the name "prefix#this classname#<a counter>. + * This returns the name "prefix#this classname#<aCounter>". * @return the generated name */ public String getDefault() { @@ -871,4 +871,4 @@ return o.hashCode(); } } -} +} \ No newline at end of file 1.2 +2 -2 ant/src/main/org/apache/tools/ant/types/resources/URLResource.java Index: URLResource.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/types/resources/URLResource.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- URLResource.java 23 May 2005 19:51:57 -0000 1.1 +++ URLResource.java 3 Jun 2005 17:18:11 -0000 1.2 @@ -102,7 +102,7 @@ /** * 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 @@ } } -} +} \ No newline at end of file 1.2 +3 -4 ant/src/main/org/apache/tools/ant/util/IdentityStack.java Index: IdentityStack.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/util/IdentityStack.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- IdentityStack.java 23 May 2005 19:28:08 -0000 1.1 +++ IdentityStack.java 3 Jun 2005 17:18:11 -0000 1.2 @@ -57,7 +57,7 @@ /** * Override methods that use <code>.equals()</code> 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 @@ * Override methods that use <code>.equals()</code> 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 @@ * Override methods that use <code>.equals()</code> 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 @@ } } - 1.10 +2 -2 ant/src/main/org/apache/tools/ant/util/facade/ImplementationSpecificArgument.java Index: ImplementationSpecificArgument.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/util/facade/ImplementationSpecificArgument.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ImplementationSpecificArgument.java 9 Mar 2005 00:20:39 -0000 1.9 +++ ImplementationSpecificArgument.java 3 Jun 2005 17:18:11 -0000 1.10 @@ -45,7 +45,7 @@ /** * 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 @@ return new String[0]; } } -} +} \ No newline at end of file
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]