01: package com.rimfaxe.xml.compatibility;
02:
03: import org.w3c.dom.*;
04:
05: /**
06: * Standard wrapper around sparta stuff.
07:
08: <blockquote><small> Copyright (C) 2002 Hewlett-Packard Company.
09: This file is part of Sparta, an XML Parser, DOM, and XPath library.
10: This library is free software; you can redistribute it and/or
11: modify it under the terms of the <a href="doc-files/LGPL.txt">GNU
12: Lesser General Public License</a> as published by the Free Software
13: Foundation; either version 2.1 of the License, or (at your option)
14: any later version. This library is distributed in the hope that it
15: will be useful, but WITHOUT ANY WARRANTY; without even the implied
16: warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
17: PURPOSE. </small></blockquote>
18: @version $Date: 2002/08/19 05:04:19 $ $Revision: 1.1.1.1 $
19: @author Eamonn O'Brien-Strain
20: */
21:
22: public class DOMImplementationImpl implements DOMImplementation {
23:
24: public DOMImplementationImpl() {
25: }
26:
27: public Document createDocument(String a, String b, DocumentType c)
28: throws DOMException {
29: /**@todo: Implement this org.w3c.dom.DOMImplementation method*/
30: throw new Error("Method createDocument() not yet implemented.");
31: }
32:
33: public DocumentType createDocumentType(String a, String b, String c)
34: throws DOMException {
35: /**@todo: Implement this org.w3c.dom.DOMImplementation method*/
36: throw new Error(
37: "Method createDocumentType() not yet implemented.");
38: }
39:
40: public boolean hasFeature(String parm1, String parm2) {
41: /**@todo: Implement this org.w3c.dom.DOMImplementation method*/
42: throw new Error("Method hasFeature() not yet implemented.");
43: }
44:
45: ///////////////////////////////////////////
46: // BEGIN DOM3
47:
48: public DOMImplementation getInterface(String feature) {
49: /**@todo: Implement this org.w3c.dom.DOMImplementation method*/
50: throw new Error("Method hasFeature() not yet implemented.");
51: }
52:
53: // END DOM 3
54: ////////////////////////////////////////////
55: }
56:
57: // $Log: DOMImplementationImpl.java,v $
58: // Revision 1.1.1.1 2002/08/19 05:04:19 eobrain
59: // import from HP Labs internal CVS
60: //
61: // Revision 1.4 2002/08/18 05:45:23 eob
62: // Add copyright and other formatting and commenting in preparation for
63: // release to SourceForge.
64: //
65: // Revision 1.3 2002/06/21 00:31:19 eob
66: // Make work with old JDK 1.1.*
67: //
68: // Revision 1.2 2002/02/08 20:32:53 eob
69: // Added extra DOM3 stuff.
70: //
71: // Revision 1.1 2002/01/04 18:35:05 eob
72: // initial
|