Browse Source

Fix uppercase <CODE> tags

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278081 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 20 years ago
parent
commit
c2554528a0
1 changed files with 12 additions and 12 deletions
  1. +12
    -12
      src/main/org/apache/tools/ant/util/ConcatFileInputStream.java

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

@@ -28,7 +28,7 @@ import org.apache.tools.ant.ProjectComponent;
import org.apache.tools.ant.Task;

/**
* Special <CODE>InputStream</CODE> that will
* Special <code>InputStream</code> that will
* concatenate the contents of an array of files.
*/
public class ConcatFileInputStream extends InputStream {
@@ -41,9 +41,9 @@ public class ConcatFileInputStream extends InputStream {
private ProjectComponent managingPc;

/**
* Construct a new <CODE>ConcatFileInputStream</CODE>
* with the specified <CODE>File[]</CODE>.
* @param file <CODE>File[]</CODE>.
* Construct a new <code>ConcatFileInputStream</code>
* with the specified <code>File[]</code>.
* @param file <code>File[]</code>.
* @throws IOException if I/O errors occur.
*/
public ConcatFileInputStream(File[] file) throws IOException {
@@ -67,18 +67,18 @@ public class ConcatFileInputStream extends InputStream {
}

/**
* Set a managing <CODE>Task</CODE> for
* this <CODE>ConcatFileInputStream</CODE>.
* @param task the managing <CODE>Task</CODE>.
* Set a managing <code>Task</code> for
* this <code>ConcatFileInputStream</code>.
* @param task the managing <code>Task</code>.
*/
public void setManagingTask(Task task) {
setManagingComponent(task);
}

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

/**
* Log a message with the specified logging level.
* @param message the <CODE>String</CODE> message.
* @param loglevel the <CODE>int</CODE> logging level.
* @param message the <code>String</code> message.
* @param loglevel the <code>int</code> logging level.
*/
public void log(String message, int loglevel) {
if (managingPc != null) {


Loading…
Cancel
Save