home *** CD-ROM | disk | FTP | other *** search
- package org.openxml;
-
- import org.openxml.dom.DocumentTypeImpl;
- import org.w3c.dom.Document;
- import org.w3c.dom.DocumentType;
- import org.w3c.dom.Node;
-
- public final class DTDDocument extends DocumentTypeImpl implements Document, DocumentType {
- public DTDDocument() {
- super((String)null);
- }
-
- public DTDDocument(Document var1, String var2, boolean var3, String var4, String var5) {
- super(var1, var2, var3, var4, var5);
- }
-
- public Object clone() {
- DTDDocument var1 = new DTDDocument();
- ((DocumentTypeImpl)this).cloneInto(var1, true);
- return var1;
- }
-
- public Node cloneNode(boolean var1) {
- DTDDocument var2 = new DTDDocument();
- ((DocumentTypeImpl)this).cloneInto(var2, var1);
- return var2;
- }
- }
-