mcconnell 2002/08/22 02:45:42
Modified: assembly/src/java/org/apache/excalibur/merlin/assembly
KernelManager.java
Log:
checkstyle ok
Revision Changes Path
1.4 +16 -3
jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/assembly/KernelManager.java
Index: KernelManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/assembly/KernelManager.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- KernelManager.java 13 Aug 2002 03:57:56 -0000 1.3
+++ KernelManager.java 22 Aug 2002 09:45:42 -0000 1.4
@@ -12,7 +12,6 @@
import org.apache.avalon.excalibur.i18n.Resources;
import org.apache.avalon.framework.context.Context;
import org.apache.avalon.framework.context.ContextException;
-import org.apache.excalibur.merlin.resource.LifestyleManager;
/**
@@ -74,7 +73,7 @@
/**
* Creation of a new <code>KernelManager</code>.
* @param parent the parent classloader
- * @param name the relative path to assign to this classloader
+ * @param path the relative path to assign to this classloader
*/
public KernelManager( ClassLoader parent, String path )
{
@@ -88,6 +87,7 @@
/**
* Declaration of the logging manager.
* @param context the context object containing the logging manager
+ * @exception ContextException if a context related error occurs
*/
public void contextualize( Context context ) throws ContextException
{
@@ -99,11 +99,21 @@
// Initializable
//=======================================================================
+ /**
+ * Initialization of the component.
+ * @exception Exception if an initialization error occurs
+ */
public void initialize() throws Exception
{
super.initialize();
}
+ /**
+ * Returns the singleton logging manager. If the is the root manager
+ * the logging manager is returned directly, otherwise, request are
+ * delegated to the partner manager.
+ * @return the logging manager
+ */
protected DefaultLoggerManager getLoggingManager()
{
if( m_logging != null )
@@ -128,6 +138,9 @@
// Disposable
//===================================================================
+ /**
+ * Disposal of the component.
+ */
public void dispose()
{
super.dispose();
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>