KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > component > DefaultComponentManager


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package org.apache.avalon.excalibur.component;
9
10 /**
11  * Default component manager for Avalon's components.
12  *
13  * @author <a HREF="mailto:bloritsch@apache.org">Berin Loritsch</a>
14  * @author <a HREF="mailto:paul@luminas.co.uk">Paul Russell</a>
15  * @version CVS $Revision: 1.3 $ $Date: 2001/12/11 09:53:27 $
16  * @since 4.0
17  * @deprecated Please use <code>ExcaliburComponentManager</code> instead
18  */

19 public class DefaultComponentManager
20     extends ExcaliburComponentManager
21 {
22     public DefaultComponentManager()
23     {
24         super();
25     }
26
27     /** Create the ComponentManager with a Classloader */
28     public DefaultComponentManager( final ClassLoader JavaDoc loader )
29     {
30         super( loader );
31     }
32 }
33
Popular Tags