This is well and good, but you forgot the testcase. I just committed the patch so the testcase works properly again. Now I need to build the TestCase for the ComponentProxyGenerator and LegacyComponentManager
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > mcconnell 2002/09/12 08:10:00 > > Modified: container build.xml > > container/src/java/org/apache/excalibur/container/classloader > ComponentClassLoader.java > 1.4 +3 -3 > jakarta-avalon-excalibur/container/src/java/org/apache/excalib > ur/container/classloader/ComponentClassLoader.java > > Index: ComponentClassLoader.java > =================================================================== > RCS file: > /home/cvs/jakarta-avalon-excalibur/container/src/java/org/apac > he/excalibur/container/classloader/ComponentClassLoader.java,v > retrieving revision 1.3 > retrieving revision 1.4 > diff -u -r1.3 -r1.4 > --- ComponentClassLoader.java 11 Sep 2002 20:36:18 > -0000 1.3 > +++ ComponentClassLoader.java 12 Sep 2002 15:10:00 > -0000 1.4 > @@ -94,7 +94,7 @@ > * Get an array of the block names. These are treated > separately from > * the generic <code>Type</code> > */ > - public String[] getBlocks() > + public String[] getBlockEntries() > { > return (String[]) m_blocks.toArray( new String[ > m_blocks.size() ] ); > } > @@ -103,7 +103,7 @@ > * Get an array of the type names. These are treated > separately from > * the Phoenix specific <code>Block</code> > */ > - public String[] getTypes() > + public String[] getTypeEntries() > { > return (String[]) m_types.toArray( new String[ > m_types.size() ] ); > } > @@ -111,7 +111,7 @@ > /** > * Get an array of the service names. > */ > - public String[] getServices() > + public String[] getServiceEntries() > { > return (String[]) m_services.toArray( new String[ > m_services.size() ] ); > } > > > > > -- > To unsubscribe, e-mail: > <mailto:avalon-cvs-> [EMAIL PROTECTED]> > For > additional commands, > e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
