git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278164 13f79535-47bb-0310-9956-ffa450edef68master
@@ -280,7 +280,7 @@ public class AntTypeDefinition { | |||||
} | } | ||||
/** | /** | ||||
* Inner implementation of the {@see #createAndSet} logic, with no | |||||
* Inner implementation of the {@link #createAndSet(Project, Class)} logic, with no | |||||
* exception catching | * exception catching | ||||
* @param newclass class to create | * @param newclass class to create | ||||
* @param project | * @param project | ||||
@@ -415,7 +415,6 @@ public abstract class AbstractFileSet extends DataType | |||||
/** | /** | ||||
* Returns the directory scanner needed to access the files to process. | * Returns the directory scanner needed to access the files to process. | ||||
* @param p the current project | |||||
* @return a <code>DirectoryScanner</code> instance. | * @return a <code>DirectoryScanner</code> instance. | ||||
*/ | */ | ||||
public DirectoryScanner getDirectoryScanner() { | public DirectoryScanner getDirectoryScanner() { | ||||
@@ -78,7 +78,7 @@ public class ConcatFileInputStream extends InputStream { | |||||
/** | /** | ||||
* Set a managing <code>Task</code> for | * Set a managing <code>Task</code> for | ||||
* this <code>ConcatFileInputStream</code>. | * this <code>ConcatFileInputStream</code>. | ||||
* @param task the managing <code>Task</code>. | |||||
* @param pc the managing <code>Task</code>. | |||||
*/ | */ | ||||
public void setManagingComponent(ProjectComponent pc) { | public void setManagingComponent(ProjectComponent pc) { | ||||
this.managingPc = pc; | this.managingPc = pc; | ||||
@@ -26,7 +26,7 @@ import org.w3c.dom.Text; | |||||
* Some utility methods for common tasks when building DOM trees in memory. | * Some utility methods for common tasks when building DOM trees in memory. | ||||
* | * | ||||
* <p>In this documentation <code><a></code> means an {@link | * <p>In this documentation <code><a></code> means an {@link | ||||
* org.w3c.do.Element Element} instance with name <code>a</code>.</p> | |||||
* org.w3c.dom.Element Element} instance with name <code>a</code>.</p> | |||||
* | * | ||||
* @since Ant 1.6.3 | * @since Ant 1.6.3 | ||||
*/ | */ | ||||
@@ -123,7 +123,7 @@ public class UnrecognizedExtraField implements ZipExtraField { | |||||
} | } | ||||
/** | /** | ||||
* @see ZipExtraField#parseFromLocalFileData(data, offset, length) | |||||
* @see ZipExtraField#parseFromLocalFileData(byte[], int, int) | |||||
*/ | */ | ||||
public void parseFromLocalFileData(byte[] data, int offset, int length) { | public void parseFromLocalFileData(byte[] data, int offset, int length) { | ||||
byte[] tmp = new byte[length]; | byte[] tmp = new byte[length]; | ||||