Browse Source

javadocs

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278164 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 20 years ago
parent
commit
a2f33d1681
5 changed files with 4 additions and 5 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/AntTypeDefinition.java
  2. +0
    -1
      src/main/org/apache/tools/ant/types/AbstractFileSet.java
  3. +1
    -1
      src/main/org/apache/tools/ant/util/ConcatFileInputStream.java
  4. +1
    -1
      src/main/org/apache/tools/ant/util/DOMUtils.java
  5. +1
    -1
      src/main/org/apache/tools/zip/UnrecognizedExtraField.java

+ 1
- 1
src/main/org/apache/tools/ant/AntTypeDefinition.java View File

@@ -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
* @param newclass class to create
* @param project


+ 0
- 1
src/main/org/apache/tools/ant/types/AbstractFileSet.java View File

@@ -415,7 +415,6 @@ public abstract class AbstractFileSet extends DataType

/**
* Returns the directory scanner needed to access the files to process.
* @param p the current project
* @return a <code>DirectoryScanner</code> instance.
*/
public DirectoryScanner getDirectoryScanner() {


+ 1
- 1
src/main/org/apache/tools/ant/util/ConcatFileInputStream.java View File

@@ -78,7 +78,7 @@ public class ConcatFileInputStream extends InputStream {
/**
* Set a managing <code>Task</code> for
* this <code>ConcatFileInputStream</code>.
* @param task the managing <code>Task</code>.
* @param pc the managing <code>Task</code>.
*/
public void setManagingComponent(ProjectComponent pc) {
this.managingPc = pc;


+ 1
- 1
src/main/org/apache/tools/ant/util/DOMUtils.java View File

@@ -26,7 +26,7 @@ import org.w3c.dom.Text;
* Some utility methods for common tasks when building DOM trees in memory.
*
* <p>In this documentation <code>&lt;a&gt;</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
*/


+ 1
- 1
src/main/org/apache/tools/zip/UnrecognizedExtraField.java View File

@@ -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) {
byte[] tmp = new byte[length];


Loading…
Cancel
Save