KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > config > test > ExceptionFactory


1 /*
2  * Copyright (c) 2003-2004, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.config.test;
8
9
10 import com.inversoft.config.ConfigBuilder;
11 import com.inversoft.config.ConfigFactory;
12 import com.inversoft.config.ConfigRegistry;
13
14
15 /**
16  * <p>
17  * This class is a factory that can not be instantiated.
18  * </p>
19  *
20  * @author Brian Pontarelli
21  */

22 public abstract class ExceptionFactory implements ConfigFactory {
23
24     public ExceptionFactory() {
25     }
26
27     public ConfigBuilder createBuilder() {
28         return null;
29     }
30
31     public ConfigRegistry createRegistry() {
32         return null;
33     }
34 }
35
Popular Tags