home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2001 December / dppcpro1201.iso / Extras / maple / Viewer / WebEQ / MMLViewerInstall.cab / MMLViewerApplet.cab / org / w3c / dom / DOMImplementation.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-05-24  |  493 b   |  10 lines

  1. package org.w3c.dom;
  2.  
  3. public interface DOMImplementation {
  4.    boolean hasFeature(String var1, String var2);
  5.  
  6.    DocumentType createDocumentType(String var1, String var2, String var3) throws DOMException;
  7.  
  8.    Document createDocument(String var1, String var2, DocumentType var3) throws DOMException;
  9. }
  10.