home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / org / openxml / DTDDocument.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-05-16  |  716 b   |  29 lines

  1. package org.openxml;
  2.  
  3. import org.openxml.dom.DocumentTypeImpl;
  4. import org.w3c.dom.Document;
  5. import org.w3c.dom.DocumentType;
  6. import org.w3c.dom.Node;
  7.  
  8. public final class DTDDocument extends DocumentTypeImpl implements Document, DocumentType {
  9.    public DTDDocument() {
  10.       super((String)null);
  11.    }
  12.  
  13.    public DTDDocument(Document var1, String var2, boolean var3, String var4, String var5) {
  14.       super(var1, var2, var3, var4, var5);
  15.    }
  16.  
  17.    public Object clone() {
  18.       DTDDocument var1 = new DTDDocument();
  19.       ((DocumentTypeImpl)this).cloneInto(var1, true);
  20.       return var1;
  21.    }
  22.  
  23.    public Node cloneNode(boolean var1) {
  24.       DTDDocument var2 = new DTDDocument();
  25.       ((DocumentTypeImpl)this).cloneInto(var2, var1);
  26.       return var2;
  27.    }
  28. }
  29.