made the stub DOM API public just in case

This commit is contained in:
James Strachan
2012-05-25 10:30:13 +01:00
parent ea9267e869
commit 8d3aeb9e1e
+19 -19
View File
@@ -3,25 +3,25 @@ package org.w3c.dom
/** /**
* A stub class definition so we can work with the DOM APIs as native objects * A stub class definition so we can work with the DOM APIs as native objects
*/ */
native interface Document : Node { native public interface Document : Node {
} }
native interface Attr : Node {} native public interface Attr : Node {}
native interface CDATASection : Text {} native public interface CDATASection : Text {}
native interface CharacterData : Node {} native public interface CharacterData : Node {}
native interface Comment : CharacterData {} native public interface Comment : CharacterData {}
native interface DOMImplementation {} native public interface DOMImplementation {}
native interface DocumentType : Node {} native public interface DocumentType : Node {}
native interface Element : Node {} native public interface Element : Node {}
native interface Entity : Node {} native public interface Entity : Node {}
native interface EntityReference : Node {} native public interface EntityReference : Node {}
native interface NameList {} native public interface NameList {}
native interface NamedNodeMap {} native public interface NamedNodeMap {}
native interface Node {} native public interface Node {}
native interface NodeList {} native public interface NodeList {}
native interface Notation : Node {} native public interface Notation : Node {}
native interface ProcessingInstruction : Node {} native public interface ProcessingInstruction : Node {}
native interface Text : CharacterData {} native public interface Text : CharacterData {}
native interface TypeInfo {} native public interface TypeInfo {}
native interface UserDataHandler {} native public interface UserDataHandler {}