ceki        2003/08/23 09:00:52

  Modified:    src/java/org/apache/log4j NDC.java FileAppender.java
                        DailyRollingFileAppender.java Priority.java
                        Category.java
               src/java/org/apache/log4j/chainsaw EventContainer.java
                        ShutdownListener.java
               src/java/org/apache/log4j/jdbc JDBCAppender.java
  Log:
  
  Minor corrections required to generate javadoc with JDK 1.4
  
  Revision  Changes    Path
  1.16      +1 -1      jakarta-log4j/src/java/org/apache/log4j/NDC.java
  
  Index: NDC.java
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/NDC.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- NDC.java  18 Mar 2003 21:24:02 -0000      1.15
  +++ NDC.java  23 Aug 2003 16:00:52 -0000      1.16
  @@ -220,7 +220,7 @@
   
     /**
        <font color="#FF4040"><b>Never use this method directly, use the [EMAIL 
PROTECTED]
  -     org.apache.log4j.spi.LoggingEvent#getNDC} method instead.</b></font>
  +     org.apache.log4j.spi.LoggingEvent#getNDC} method instead</b></font>.
     */
     public static String get() {
       Stack s = (Stack) ht.get(Thread.currentThread());
  
  
  
  1.39      +7 -8      jakarta-log4j/src/java/org/apache/log4j/FileAppender.java
  
  Index: FileAppender.java
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/FileAppender.java,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- FileAppender.java 17 May 2003 17:33:14 -0000      1.38
  +++ FileAppender.java 23 Aug 2003 16:00:52 -0000      1.39
  @@ -72,13 +72,12 @@
    * @author Ceki G&uuml;lc&uuml;
    * */
   public class FileAppender extends WriterAppender {
  -  /** Append to or truncate the file? The default value for this
  -      variable is <code>true</code>, meaning that by default a
  -      <code>FileAppender</code> will append to an existing file and
  -      not truncate it.
  -
  -      <p>This option is meaningful only if the FileAppender opens the
  -      file.
  +  /** 
  +   * Append to or truncate the file? The default value for this variable is 
  +   * <code>true</code>, meaning that by default a <code>FileAppender</code> will
  +   *  append to an existing file and not truncate it. 
  +   * 
  +   * <p>This option is meaningful only if the FileAppender opens the file.
     */
     protected boolean fileAppend = true;
   
  @@ -91,7 +90,7 @@
     protected boolean bufferedIO = false;
   
     /**
  -     How big should the IO buffer be? Default is 8K. */
  +     The size of the IO buffer. Default is 8K. */
     protected int bufferSize = 8 * 1024;
   
     /**
  
  
  
  1.25      +1 -1      
jakarta-log4j/src/java/org/apache/log4j/DailyRollingFileAppender.java
  
  Index: DailyRollingFileAppender.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/DailyRollingFileAppender.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- DailyRollingFileAppender.java     21 May 2003 19:00:00 -0000      1.24
  +++ DailyRollingFileAppender.java     23 Aug 2003 16:00:52 -0000      1.25
  @@ -163,7 +163,7 @@
   
      @author Eirik Lygre
      @author Ceki G&uuml;lc&uuml;
  -   * @deprecated Has been replaced by [EMAIL PROTECTED] 
org.apache.log4j.rolling.RollingAppender RollingAppender}
  +   * @deprecated Has been replaced by [EMAIL PROTECTED] 
org.apache.log4j.rolling.RollingFileAppender RollingFileAppender}
      * and [EMAIL PROTECTED] org.apache.log4j.rolling.TimeBasedRollingPolicy 
TimeBasedRollingPolicy}.
      *
      * */
  
  
  
  1.25      +1 -1      jakarta-log4j/src/java/org/apache/log4j/Priority.java
  
  Index: Priority.java
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/Priority.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Priority.java     18 Mar 2003 21:24:02 -0000      1.24
  +++ Priority.java     23 Aug 2003 16:00:52 -0000      1.25
  @@ -54,7 +54,7 @@
   
   /**
      <font color="#AA4444">Refrain from using this class directly, use
  -   the [EMAIL PROTECTED] Level} class instead.</font>
  +   the [EMAIL PROTECTED] Level} class instead</font>.
   
      @author Ceki G&uuml;lc&uuml; */
   public class Priority {
  
  
  
  1.77      +1 -1      jakarta-log4j/src/java/org/apache/log4j/Category.java
  
  Index: Category.java
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/Category.java,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- Category.java     10 Jul 2003 08:50:31 -0000      1.76
  +++ Category.java     23 Aug 2003 16:00:52 -0000      1.77
  @@ -78,7 +78,7 @@
   
   /**
    * <font color="#AA2222"><b>This class has been deprecated and replaced by the
  - * [EMAIL PROTECTED] Logger}<em>subclass</em>.</b></font> It will be kept around to
  + * [EMAIL PROTECTED] Logger}<em>subclass</em></b></font>. It will be kept around to
    * preserve backward compatibility until mid 2003.
    *
    * <p>
  
  
  
  1.2       +5 -8      
jakarta-log4j/src/java/org/apache/log4j/chainsaw/EventContainer.java
  
  Index: EventContainer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/chainsaw/EventContainer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- EventContainer.java       25 Jun 2003 04:05:22 -0000      1.1
  +++ EventContainer.java       23 Aug 2003 16:00:52 -0000      1.2
  @@ -74,34 +74,31 @@
     void clearModel();
   
     /**
  -   * Returns true if this model is Cyclic (bounded) or not 
  +   * Returns true if this model is Cyclic (bounded) or not. 
      * @return true/false
      */
     public boolean isCyclic();
     
     /**
      * Locates a row number, starting from startRow, containing the text
  -   * within any column
  +   * within any column.
      * @param startRow
      * @param text
  -   * @return
      */
     int find(int startRow, String text);
   
     /**
  -   * Returns every event in the model
  -   * @return
  +   * Returns every event in the model.
      */
     Vector getAllEvents();
   
     /**
  -   * Returns the vector representing the row
  -   * @return
  +   * Returns the vector representing the row.
      */
     Vector getRow(int row);
   
     /**
  -   * Adds a row to the model
  +   * Adds a row to the model.
      * @param row
      * @param valueIsAdjusting
      * @return flag representing whether or not the row is being displayed (not 
filtered)
  
  
  
  1.2       +1 -1      
jakarta-log4j/src/java/org/apache/log4j/chainsaw/ShutdownListener.java
  
  Index: ShutdownListener.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-log4j/src/java/org/apache/log4j/chainsaw/ShutdownListener.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ShutdownListener.java     7 Aug 2003 07:55:09 -0000       1.1
  +++ ShutdownListener.java     23 Aug 2003 16:00:52 -0000      1.2
  @@ -60,7 +60,7 @@
    * Listeners should <B>NOT</b> perform the action of actual shutting down
    * however (i.e. do not call System.exit()).
    * 
  - * @see LogUI.setShutdownAction(Action)
  + * @see LogUI#setShutdownAction(Action)
    * 
    * @author Paul Smith <[EMAIL PROTECTED]>
    */
  
  
  
  1.10      +1 -1      jakarta-log4j/src/java/org/apache/log4j/jdbc/JDBCAppender.java
  
  Index: JDBCAppender.java
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/jdbc/JDBCAppender.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- JDBCAppender.java 5 May 2003 20:42:56 -0000       1.9
  +++ JDBCAppender.java 23 Aug 2003 16:00:52 -0000      1.10
  @@ -57,7 +57,7 @@
   
       </ul>
   
  -    @author: Kevin Steppe (<A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A>)
  +    @author Kevin Steppe (<A HREF="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A>)
   
   */
   public class JDBCAppender extends org.apache.log4j.AppenderSkeleton
  
  
  

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

Reply via email to