mbenson     2005/06/09 14:46:30

  Modified:    src/main/org/apache/tools/ant/util LeadPipeInputStream.java
  Log:
  s/CODE/code in javadoc HTML
  
  Revision  Changes    Path
  1.5       +18 -18    
ant/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java
  
  Index: LeadPipeInputStream.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- LeadPipeInputStream.java  4 Feb 2005 08:08:59 -0000       1.4
  +++ LeadPipeInputStream.java  9 Jun 2005 21:46:30 -0000       1.5
  @@ -26,22 +26,22 @@
   import org.apache.tools.ant.Project;
   
   /**
  - * Special <CODE>PipedInputStream</CODE> that will not die
  - * when the writing <CODE>Thread</CODE> is no longer alive.
  + * Special <code>PipedInputStream</code> that will not die
  + * when the writing <code>Thread</code> is no longer alive.
    * @since Ant 1.6.2
    */
   public class LeadPipeInputStream extends PipedInputStream {
       private ProjectComponent managingPc;
   
       /**
  -     * Construct a new <CODE>LeadPipeInputStream</CODE>.
  +     * Construct a new <code>LeadPipeInputStream</code>.
        */
       public LeadPipeInputStream() {
           super();
       }
   
       /**
  -     * Construct a new <CODE>LeadPipeInputStream</CODE>
  +     * Construct a new <code>LeadPipeInputStream</code>
        * with the specified buffer size.
        * @param size   the size of the circular buffer.
        */
  @@ -51,9 +51,9 @@
       }
   
       /**
  -     * Construct a new <CODE>LeadPipeInputStream</CODE> to pull
  -     * from the specified <CODE>PipedOutputStream</CODE>.
  -     * @param src   the <CODE>PipedOutputStream</CODE> source.
  +     * Construct a new <code>LeadPipeInputStream</code> to pull
  +     * from the specified <code>PipedOutputStream</code>.
  +     * @param src   the <code>PipedOutputStream</code> source.
        * @throws IOException if unable to construct the stream.
        */
       public LeadPipeInputStream(PipedOutputStream src) throws IOException {
  @@ -61,10 +61,10 @@
       }
   
       /**
  -     * Construct a new <CODE>LeadPipeInputStream</CODE> to pull
  -     * from the specified <CODE>PipedOutputStream</CODE>, using a
  +     * Construct a new <code>LeadPipeInputStream</code> to pull
  +     * from the specified <code>PipedOutputStream</code>, using a
        * circular buffer of the specified size.
  -     * @param src    the <CODE>PipedOutputStream</CODE> source.
  +     * @param src    the <code>PipedOutputStream</code> source.
        * @param size   the size of the circular buffer.
        */
       public LeadPipeInputStream(PipedOutputStream src, int size) throws 
IOException {
  @@ -114,18 +114,18 @@
       }
   
       /**
  -     * Set a managing <CODE>Task</CODE> for
  -     * this <CODE>LeadPipeInputStream</CODE>.
  -     * @param task   the managing <CODE>Task</CODE>.
  +     * Set a managing <code>Task</code> for
  +     * this <code>LeadPipeInputStream</code>.
  +     * @param task   the managing <code>Task</code>.
        */
       public void setManagingTask(Task task) {
           setManagingComponent(task);
       }
   
       /**
  -     * Set a managing <CODE>ProjectComponent</CODE> for
  -     * this <CODE>LeadPipeInputStream</CODE>.
  -     * @param pc   the managing <CODE>ProjectComponent</CODE>.
  +     * Set a managing <code>ProjectComponent</code> for
  +     * this <code>LeadPipeInputStream</code>.
  +     * @param pc   the managing <code>ProjectComponent</code>.
        */
       public void setManagingComponent(ProjectComponent pc) {
           this.managingPc = pc;
  @@ -133,8 +133,8 @@
   
       /**
        * 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) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to