mcconnell 2002/11/11 06:52:25
Modified: fortress/src/ng/org/apache/excalibur/fortress/container/commands
CheckTypeInfoCommand.java
Log:
Inital javadoc for constructor and methods.
Revision Changes Path
1.3 +18 -1
jakarta-avalon-excalibur/fortress/src/ng/org/apache/excalibur/fortress/container/commands/CheckTypeInfoCommand.java
Index: CheckTypeInfoCommand.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/fortress/src/ng/org/apache/excalibur/fortress/container/commands/CheckTypeInfoCommand.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CheckTypeInfoCommand.java 8 Nov 2002 07:06:13 -0000 1.2
+++ CheckTypeInfoCommand.java 11 Nov 2002 14:52:25 -0000 1.3
@@ -78,6 +78,15 @@
private final CommandFinishedListener m_listener;
private final Logger m_logger;
+ /**
+ * Creation of a new command for type info validation.
+ * @param entries the jar entries
+ * @param services a map of service declarations
+ * @param types a map of component types
+ * @param loader the classloader
+ * @param listener a command finished listener
+ * @param the logging channel to assign
+ */
public CheckTypeInfoCommand( JarEntries entries,
Map services,
Map types,
@@ -102,6 +111,10 @@
m_logger = ( null == logger ) ? new NullLogger() : logger;
}
+ /**
+ * Execution of type info check.
+ * @exception Exception if error occurs during execution
+ */
public void execute()
throws Exception
{
@@ -210,6 +223,10 @@
m_listener.commandCompleted( this );
}
+ /**
+ * Return the assigned logging channel.
+ * @return logger the logging channel
+ */
private final Logger getLogger()
{
return m_logger;
--
To unsubscribe, e-mail: <mailto:avalon-cvs-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:avalon-cvs-help@;jakarta.apache.org>