01: /*
02: * Project: Gulden Utilies
03: * Class: de.gulden.util.xml.NodeListCollection
04: * Version: snapshot-beautyj-1.1
05: *
06: * Date: 2004-09-29
07: *
08: * This is a snapshot version of the Gulden Utilities,
09: * it is not released as a seperate version.
10: *
11: * Note: Contains auto-generated Javadoc comments created by BeautyJ.
12: *
13: * This is licensed under the GNU Lesser General Public License (LGPL)
14: * and comes with NO WARRANTY.
15: *
16: * Author: Jens Gulden
17: * Email: amoda@jensgulden.de
18: */
19:
20: package de.gulden.util.xml;
21:
22: import java.util.Collection;
23: import org.w3c.dom.NodeList;
24:
25: /**
26: *
27: * @author jgulden
28: * TODO To change the template for this generated type comment go to
29: * Window - Preferences - Java - Code Style - Code Templates
30: * @version snapshot-beautyj-1.1
31: */
32: public interface NodeListCollection extends NodeList, Collection {
33: } // end NodeListCollection
|