KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > config > component > test > FailConstructionComponentConfigBuilder


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.component.test;
8
9
10 import com.inversoft.config.component.AbstractComponentConfigBuilder;
11
12
13 /**
14  * <p>
15  * Test class that has a private constructor.
16  * </p>
17  *
18  * @author Brian Pontarelli
19  */

20 public class FailConstructionComponentConfigBuilder extends AbstractComponentConfigBuilder{
21
22     private FailConstructionComponentConfigBuilder() {
23
24     }
25 }
26
Popular Tags