KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > ioc > deployment > Descriptor


1 /* JFox, the OpenSource J2EE Application Server
2  *
3  * Distributable under GNU LGPL license by gun.org
4  * more details please visit http://www.huihoo.org/jfox
5  */

6
7 package org.jfox.ioc.deployment;
8
9 import org.jfox.ioc.deploy.ComponentDescriptionException;
10 import org.w3c.dom.Node JavaDoc;
11
12 /**
13  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
14  */

15
16 public interface Descriptor {
17     void processXML(Node JavaDoc node) throws ComponentDescriptionException;
18 }
Popular Tags