Javadoc
This commit is contained in:
@@ -33,13 +33,13 @@ public class LogConfigurationException extends RuntimeException {
|
|||||||
protected Throwable cause;
|
protected Throwable cause;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a new exception with {@code null} as its detail message.
|
* Constructs a new exception with {@code null} as its detail message.
|
||||||
*/
|
*/
|
||||||
public LogConfigurationException() {
|
public LogConfigurationException() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a new exception with the specified detail message.
|
* Constructs a new exception with the specified detail message.
|
||||||
*
|
*
|
||||||
* @param message The detail message
|
* @param message The detail message
|
||||||
*/
|
*/
|
||||||
@@ -48,7 +48,7 @@ public class LogConfigurationException extends RuntimeException {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a new exception with the specified detail message and cause.
|
* Constructs a new exception with the specified detail message and cause.
|
||||||
*
|
*
|
||||||
* @param message The detail message
|
* @param message The detail message
|
||||||
* @param cause The underlying cause
|
* @param cause The underlying cause
|
||||||
@@ -59,7 +59,7 @@ public class LogConfigurationException extends RuntimeException {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a new exception with the specified cause and a derived
|
* Constructs a new exception with the specified cause and a derived
|
||||||
* detail message.
|
* detail message.
|
||||||
*
|
*
|
||||||
* @param cause The underlying cause
|
* @param cause The underlying cause
|
||||||
|
|||||||
@@ -750,7 +750,7 @@ public abstract class LogFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct (if necessary) and return a {@code LogFactory} instance, using the following ordered lookup procedure to determine the name of the
|
* Constructs (if necessary) and return a {@code LogFactory} instance, using the following ordered lookup procedure to determine the name of the
|
||||||
* implementation class to be loaded.
|
* implementation class to be loaded.
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>The {@code org.apache.commons.logging.LogFactory} system property.</li>
|
* <li>The {@code org.apache.commons.logging.LogFactory} system property.</li>
|
||||||
@@ -1626,7 +1626,7 @@ public abstract class LogFactory {
|
|||||||
public abstract Log getInstance(Class clazz) throws LogConfigurationException;
|
public abstract Log getInstance(Class clazz) throws LogConfigurationException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct (if necessary) and return a {@code Log} instance, using the factory's current set of configuration attributes.
|
* Constructs (if necessary) and return a {@code Log} instance, using the factory's current set of configuration attributes.
|
||||||
* <p>
|
* <p>
|
||||||
* <strong>NOTE</strong> - Depending upon the implementation of the {@code LogFactory} you are using, the {@code Log} instance you are returned may or may
|
* <strong>NOTE</strong> - Depending upon the implementation of the {@code LogFactory} you are using, the {@code Log} instance you are returned may or may
|
||||||
* not be local to the current application, and may or may not be returned again on a subsequent call with the same name argument.
|
* not be local to the current application, and may or may not be returned again on a subsequent call with the same name argument.
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
|||||||
// ----------------------------------------------------------- Constructors
|
// ----------------------------------------------------------- Constructors
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a named instance of this Logger.
|
* Constructs a named instance of this Logger.
|
||||||
*
|
*
|
||||||
* @param name Name of the logger to be constructed
|
* @param name Name of the logger to be constructed
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ public class Jdk14Logger implements Log, Serializable {
|
|||||||
protected String name;
|
protected String name;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a named instance of this Logger.
|
* Constructs a named instance of this Logger.
|
||||||
*
|
*
|
||||||
* @param name Name of the logger to be constructed
|
* @param name Name of the logger to be constructed
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ public class LogKitLogger implements Log, Serializable {
|
|||||||
// ------------------------------------------------------------ Constructor
|
// ------------------------------------------------------------ Constructor
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct {@code LogKitLogger} which wraps the {@code LogKit}
|
* Constructs {@code LogKitLogger} which wraps the {@code LogKit}
|
||||||
* logger with given name.
|
* logger with given name.
|
||||||
*
|
*
|
||||||
* @param name log name
|
* @param name log name
|
||||||
|
|||||||
@@ -276,7 +276,7 @@ public class SimpleLog implements Log, Serializable {
|
|||||||
private volatile String shortLogName;
|
private volatile String shortLogName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a simple log with given name.
|
* Constructs a simple log with given name.
|
||||||
*
|
*
|
||||||
* @param name log name
|
* @param name log name
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user