01: package org.enhydra.shark.xpdl.elements;
02:
03: import org.enhydra.shark.xpdl.XMLCollection;
04: import org.enhydra.shark.xpdl.XMLElement;
05:
06: /**
07: * Helper class to properly write namespaces in XML.
08: *
09: * @author Sasa Bojanic
10: */
11: public class Namespaces extends XMLCollection {
12:
13: public Namespaces(Package parent) {
14: super (parent, true);
15: }
16:
17: public XMLElement generateNewElement() {
18: return new Namespace(this);
19: }
20:
21: }
|