1
0
This commit is contained in:
Gary Gregory
2023-12-17 14:40:52 -05:00
parent aa6eaef9ec
commit bf1956afb8
6 changed files with 28 additions and 28 deletions

View File

@@ -731,7 +731,7 @@ public abstract class LogFactory {
* <li>The {@code org.apache.commons.logging.LogFactory} system property.</li> * <li>The {@code org.apache.commons.logging.LogFactory} system property.</li>
* <li>The JDK 1.3 Service Discovery mechanism</li> * <li>The JDK 1.3 Service Discovery mechanism</li>
* <li>Use the properties file {@code commons-logging.properties} file, if found in the class path of this class. The configuration file is in standard * <li>Use the properties file {@code commons-logging.properties} file, if found in the class path of this class. The configuration file is in standard
* {@code java.util.Properties} format and contains the fully qualified name of the implementation class with the key being the system property defined * {@link java.util.Properties} format and contains the fully qualified name of the implementation class with the key being the system property defined
* above.</li> * above.</li>
* <li>Fall back to a default implementation class ({@code org.apache.commons.logging.impl.LogFactoryImpl}).</li> * <li>Fall back to a default implementation class ({@code org.apache.commons.logging.impl.LogFactoryImpl}).</li>
* </ul> * </ul>

View File

@@ -82,7 +82,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINE}. * Logs a message with {@link java.util.logging.Level#FINE}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#debug(Object) * @see org.apache.commons.logging.Log#debug(Object)
@@ -93,7 +93,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINE}. * Logs a message with {@link java.util.logging.Level#FINE}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -105,7 +105,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#error(Object) * @see org.apache.commons.logging.Log#error(Object)
@@ -116,7 +116,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -128,7 +128,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#fatal(Object) * @see org.apache.commons.logging.Log#fatal(Object)
@@ -139,7 +139,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -196,7 +196,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.INFO}. * Logs a message with {@link java.util.logging.Level#INFO}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#info(Object) * @see org.apache.commons.logging.Log#info(Object)
@@ -207,7 +207,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.INFO}. * Logs a message with {@link java.util.logging.Level#INFO}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -282,7 +282,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINEST}. * Logs a message with {@link java.util.logging.Level#FINEST}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#trace(Object) * @see org.apache.commons.logging.Log#trace(Object)
@@ -293,7 +293,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINEST}. * Logs a message with {@link java.util.logging.Level#FINEST}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -305,7 +305,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.WARNING}. * Logs a message with {@link java.util.logging.Level#WARNING}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#warn(Object) * @see org.apache.commons.logging.Log#warn(Object)
@@ -316,7 +316,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.WARNING}. * Logs a message with {@link java.util.logging.Level#WARNING}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause

View File

@@ -62,7 +62,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINE}. * Logs a message with {@link java.util.logging.Level#FINE}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#debug(Object) * @see org.apache.commons.logging.Log#debug(Object)
@@ -73,7 +73,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINE}. * Logs a message with {@link java.util.logging.Level#FINE}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -85,7 +85,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#error(Object) * @see org.apache.commons.logging.Log#error(Object)
@@ -96,7 +96,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -108,7 +108,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#fatal(Object) * @see org.apache.commons.logging.Log#fatal(Object)
@@ -119,7 +119,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.SEVERE}. * Logs a message with {@link java.util.logging.Level#SEVERE}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -143,7 +143,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.INFO}. * Logs a message with {@link java.util.logging.Level#INFO}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#info(Object) * @see org.apache.commons.logging.Log#info(Object)
@@ -154,7 +154,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.INFO}. * Logs a message with {@link java.util.logging.Level#INFO}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -242,7 +242,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINEST}. * Logs a message with {@link java.util.logging.Level#FINEST}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#trace(Object) * @see org.apache.commons.logging.Log#trace(Object)
@@ -253,7 +253,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.FINEST}. * Logs a message with {@link java.util.logging.Level#FINEST}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause
@@ -265,7 +265,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.WARNING}. * Logs a message with {@link java.util.logging.Level#WARNING}.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#warn(Object) * @see org.apache.commons.logging.Log#warn(Object)
@@ -276,7 +276,7 @@ public class Jdk14Logger implements Log, Serializable {
} }
/** /**
* Logs a message with {@code java.util.logging.Level.WARNING}. * Logs a message with {@link java.util.logging.Level#WARNING}.
* *
* @param message to log * @param message to log
* @param exception log this cause * @param exception log this cause

View File

@@ -57,7 +57,7 @@ import org.apache.commons.logging.LogConfigurationException;
* <li>{@code org.apache.commons.logging.simplelog.dateTimeFormat} - * <li>{@code org.apache.commons.logging.simplelog.dateTimeFormat} -
* The date and time format to be used in the output messages. * The date and time format to be used in the output messages.
* The pattern describing the date and time format is the same that is * The pattern describing the date and time format is the same that is
* used in {@code java.text.SimpleDateFormat}. If the format is not * used in {@link java.text.SimpleDateFormat}. If the format is not
* specified or is invalid, the default format is used. * specified or is invalid, the default format is used.
* The default format is {@code yyyy/MM/dd HH:mm:ss:SSS zzz}.</li> * The default format is {@code yyyy/MM/dd HH:mm:ss:SSS zzz}.</li>
* </ul> * </ul>

View File

@@ -57,7 +57,7 @@ import java.util.Set;
* Having this class used instead of {@code Hashtable} solves * Having this class used instead of {@code Hashtable} solves
* certain issues related to dynamic reloading of applications in J2EE-style * certain issues related to dynamic reloading of applications in J2EE-style
* environments. However this class requires Java 1.3 or later (due to its use * environments. However this class requires Java 1.3 or later (due to its use
* of {@code java.lang.ref.WeakReference} and associates). * of {@link java.lang.ref.WeakReference} and associates).
* And by the way, this extends {@code Hashtable} rather than {@code HashMap} * And by the way, this extends {@code Hashtable} rather than {@code HashMap}
* for backwards compatibility reasons. See the documentation * for backwards compatibility reasons. See the documentation
* for method {@code LogFactory.createFactoryStore} for more details. * for method {@code LogFactory.createFactoryStore} for more details.

View File

@@ -23,7 +23,7 @@ import java.util.logging.Handler;
import java.util.logging.LogRecord; import java.util.logging.LogRecord;
/** /**
* <p>Test implementation of {@code java.util.logging.Handler}.</p> * <p>Test implementation of {@link java.util.logging.Handler}.</p>
*/ */
public class TestHandler extends Handler { public class TestHandler extends Handler {