peterreilly    2005/03/11 03:15:27

  Modified:    src/main/org/apache/tools/ant/listener
                        CommonsLoggingListener.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.13      +19 -1     
ant/src/main/org/apache/tools/ant/listener/CommonsLoggingListener.java
  
  Index: CommonsLoggingListener.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/listener/CommonsLoggingListener.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- CommonsLoggingListener.java       8 Oct 2004 09:00:24 -0000       1.12
  +++ CommonsLoggingListener.java       11 Mar 2005 11:15:27 -0000      1.13
  @@ -1,5 +1,5 @@
   /*
  - * Copyright  2002-2004 The Apache Software Foundation
  + * Copyright  2002-2005 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  @@ -282,18 +282,36 @@
       PrintStream out = System.out;
       PrintStream err = System.err;
   
  +    /**
  +     * Set the the output level.
  +     * This is not used, the logger config is used instead.
  +     * @param level ignored
  +     */
       public void setMessageOutputLevel(int level) {
           // Use the logger config
       }
   
  +    /**
  +     * Set the output print stream.
  +     * @param output the output stream
  +     */
       public void setOutputPrintStream(PrintStream output) {
           this.out = output;
       }
   
  +    /**
  +     * Set emacs mode.
  +     * This is ignored.
  +     * @param emacsMode ignored
  +     */
       public void setEmacsMode(boolean emacsMode) {
           // Doesn't make sense for c-l. Use the logger config
       }
   
  +    /**
  +     * Set the error print stream.
  +     * @param err the error stream
  +     */
       public void setErrorPrintStream(PrintStream err) {
           this.err = err;
       }
  
  
  

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

Reply via email to