1
0

Cosmetic changes in comments, to keep the JDK 1.4 standard JavaDoc

doclet from whining.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Craig R. McClanahan
2002-06-15 18:13:02 +00:00
parent 6b15ddfe75
commit 08ee4c68c3
4 changed files with 37 additions and 37 deletions

View File

@@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/Log.java,v 1.12 2002/01/31 00:14:31 sanders Exp $
* $Revision: 1.12 $
* $Date: 2002/01/31 00:14:31 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/Log.java,v 1.13 2002/06/15 18:13:01 craigmcc Exp $
* $Revision: 1.13 $
* $Date: 2002/06/15 18:13:01 $
*
* ====================================================================
*
@@ -102,7 +102,7 @@ package org.apache.commons.logging;
*
* @author <a href="mailto:sanders@apache.org">Scott Sanders</a>
* @author Rod Waldhoff
* @version $Id: Log.java,v 1.12 2002/01/31 00:14:31 sanders Exp $
* @version $Id: Log.java,v 1.13 2002/06/15 18:13:01 craigmcc Exp $
*/
public interface Log {
@@ -174,7 +174,7 @@ public interface Log {
/**
* <p> Log a message with trace log level </p>
* <p> Log a message with trace log level. </p>
*
* @param message log this message
*/
@@ -182,7 +182,7 @@ public interface Log {
/**
* <p> Log an error with trace log level </p>
* <p> Log an error with trace log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -191,7 +191,7 @@ public interface Log {
/**
* <p> Log a message with debug log level </p>
* <p> Log a message with debug log level. </p>
*
* @param message log this message
*/
@@ -199,7 +199,7 @@ public interface Log {
/**
* <p> Log an error with debug log level </p>
* <p> Log an error with debug log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -208,7 +208,7 @@ public interface Log {
/**
* <p> Log a message with info log level </p>
* <p> Log a message with info log level. </p>
*
* @param message log this message
*/
@@ -216,7 +216,7 @@ public interface Log {
/**
* <p> Log an error with info log level </p>
* <p> Log an error with info log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -225,7 +225,7 @@ public interface Log {
/**
* <p> Log a message with warn log level </p>
* <p> Log a message with warn log level. </p>
*
* @param message log this message
*/
@@ -233,7 +233,7 @@ public interface Log {
/**
* <p> Log an error with warn log level </p>
* <p> Log an error with warn log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -242,7 +242,7 @@ public interface Log {
/**
* <p> Log a message with error log level </p>
* <p> Log a message with error log level. </p>
*
* @param message log this message
*/
@@ -250,7 +250,7 @@ public interface Log {
/**
* <p> Log an error with error log level </p>
* <p> Log an error with error log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -259,7 +259,7 @@ public interface Log {
/**
* <p> Log a message with fatal log level </p>
* <p> Log a message with fatal log level. </p>
*
* @param message log this message
*/
@@ -267,7 +267,7 @@ public interface Log {
/**
* <p> Log an error with fatal log level </p>
* <p> Log an error with fatal log level. </p>
*
* @param message log this message
* @param t log this cause

View File

@@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.8 2002/06/11 22:29:14 rsitze Exp $
* $Revision: 1.8 $
* $Date: 2002/06/11 22:29:14 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.9 2002/06/15 18:13:01 craigmcc Exp $
* $Revision: 1.9 $
* $Date: 2002/06/15 18:13:01 $
*
* ====================================================================
*
@@ -85,7 +85,7 @@ import java.lang.SecurityException;
*
* @author Craig R. McClanahan
* @author Costin Manolache
* @version $Revision: 1.8 $ $Date: 2002/06/11 22:29:14 $
* @version $Revision: 1.9 $ $Date: 2002/06/15 18:13:01 $
*/
public abstract class LogFactory {
@@ -234,7 +234,7 @@ public abstract class LogFactory {
/**
* <p>Construct (if necessary) and return a <code>LogFactory</code>
* instance, using the following ordered lookup procedure to determine
* the name of the implementation class to be loaded:</p>
* the name of the implementation class to be loaded.</p>
* <ul>
* <li>The <code>org.apache.commons.logging.LogFactory</code> system
* property.</li>
@@ -550,4 +550,4 @@ public abstract class LogFactory {
}
}
}
}

View File

@@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogSource.java,v 1.14 2002/03/04 00:41:37 craigmcc Exp $
* $Revision: 1.14 $
* $Date: 2002/03/04 00:41:37 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogSource.java,v 1.15 2002/06/15 18:13:01 craigmcc Exp $
* $Revision: 1.15 $
* $Date: 2002/06/15 18:13:01 $
*
* ====================================================================
*
@@ -97,7 +97,7 @@ import org.apache.commons.logging.impl.NoOpLog;
* implementation performs exactly the same algorithm as this class did
*
* @author Rod Waldhoff
* @version $Id: LogSource.java,v 1.14 2002/03/04 00:41:37 craigmcc Exp $
* @version $Id: LogSource.java,v 1.15 2002/06/15 18:13:01 craigmcc Exp $
*/
public class LogSource {
@@ -254,7 +254,7 @@ public class LogSource {
/**
* Create a new {@link Log} implementation, based
* on the given <i>name</i>
* on the given <i>name</i>.
* <p>
* The specific {@link Log} implementation returned
* is determined by the value of the
@@ -268,11 +268,11 @@ public class LogSource {
* <p>
* When <tt>org.apache.commons.logging.log</tt> is not set,
* or when no corresponding class can be found,
* this method will return a {@link Log4JCategoryLog}
* if the log4j {@link org.apache.log4j.Category} class is
* this method will return a Log4JCategoryLog
* if the log4j Category class is
* available in the {@link LogSource}'s classpath, or a
* {@link Jdk14Logger} if we are on a JDK 1.4 or later system, or
* a {@link NoOpLog} if neither of the above conditions is true.
* Jdk14Logger if we are on a JDK 1.4 or later system, or
* NoOpLog if neither of the above conditions is true.
*
* @param name the log name (or category)
*/

View File

@@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v 1.11 2002/06/11 22:47:21 rsitze Exp $
* $Revision: 1.11 $
* $Date: 2002/06/11 22:47:21 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v 1.12 2002/06/15 18:13:02 craigmcc Exp $
* $Revision: 1.12 $
* $Date: 2002/06/15 18:13:02 $
*
* ====================================================================
*
@@ -76,7 +76,7 @@ import org.apache.commons.logging.LogSource;
/**
* <p>Concrete subclass of {@link LogFactory} that implements the
* following algorithm to dynamically select a logging implementation
* class to instantiate a wrapper for:</p>
* class to instantiate a wrapper for.</p>
* <ul>
* <li>Use a factory configuration attribute named
* <code>org.apache.commons.logging.Log</code> to identify the
@@ -104,7 +104,7 @@ import org.apache.commons.logging.LogSource;
*
* @author Rod Waldhoff
* @author Craig R. McClanahan
* @version $Revision: 1.11 $ $Date: 2002/06/11 22:47:21 $
* @version $Revision: 1.12 $ $Date: 2002/06/15 18:13:02 $
*/
public class LogFactoryImpl extends LogFactory {
@@ -530,4 +530,4 @@ public class LogFactoryImpl extends LogFactory {
}
}
}
}