提交 8d3aeb9e 编写于 作者: J James Strachan

made the stub DOM API public just in case

上级 ea9267e8
......@@ -3,25 +3,25 @@ package org.w3c.dom
/**
* 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 interface CDATASection : Text {}
native interface CharacterData : Node {}
native interface Comment : CharacterData {}
native interface DOMImplementation {}
native interface DocumentType : Node {}
native interface Element : Node {}
native interface Entity : Node {}
native interface EntityReference : Node {}
native interface NameList {}
native interface NamedNodeMap {}
native interface Node {}
native interface NodeList {}
native interface Notation : Node {}
native interface ProcessingInstruction : Node {}
native interface Text : CharacterData {}
native interface TypeInfo {}
native interface UserDataHandler {}
native public interface Attr : Node {}
native public interface CDATASection : Text {}
native public interface CharacterData : Node {}
native public interface Comment : CharacterData {}
native public interface DOMImplementation {}
native public interface DocumentType : Node {}
native public interface Element : Node {}
native public interface Entity : Node {}
native public interface EntityReference : Node {}
native public interface NameList {}
native public interface NamedNodeMap {}
native public interface Node {}
native public interface NodeList {}
native public interface Notation : Node {}
native public interface ProcessingInstruction : Node {}
native public interface Text : CharacterData {}
native public interface TypeInfo {}
native public interface UserDataHandler {}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册