KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > util > xml > confix > test > CustomConfig


1 package org.sapia.util.xml.confix.test;
2
3 // Import of Sun's JDK classes
4
// ---------------------------
5
import org.jdom.Element;
6 import org.sapia.util.xml.confix.JDOMHandlerIF;
7 import org.sapia.util.xml.confix.ConfigurationException;
8
9
10 /**
11  *
12  *
13  * @author Jean-Cedric Desrochers
14  *
15  * <dl>
16  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
17  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
18  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
19  * </dl>
20  */

21 public class CustomConfig extends NestedConfig implements JDOMHandlerIF {
22
23   public CustomConfig() {
24   }
25
26   public void handleElement(Element elem) throws ConfigurationException {
27     _theConfigElement = elem;
28   }
29 }
30
Popular Tags