made the stub DOM API public just in case
This commit is contained in:
@@ -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 {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user