KickJava   Java API By Example, From Geeks To Geeks.

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


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 selector 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 use <code>ExcaliburComponentSelector</code> instead.
18  */

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