home *** CD-ROM | disk | FTP | other *** search
- package webeq3.dom;
-
- import java.applet.Applet;
- import org.w3c.dom.DOMException;
- import org.w3c.dom.Document;
- import org.w3c.dom.NamedNodeMap;
- import org.w3c.dom.Node;
- import org.w3c.dom.NodeList;
- import webeq3.app.Equation;
-
- public class MathMLDOMApplet extends Applet implements Node {
- protected Equation document = null;
- protected MathMLDOMNodeList dom_children;
-
- public void init() {
- this.dom_children = new MathMLDOMNodeList();
- }
-
- public Node appendChild(Node var1) throws DOMException {
- return null;
- }
-
- public Node cloneNode(boolean var1) {
- return null;
- }
-
- public NamedNodeMap getAttributes() {
- return null;
- }
-
- public NodeList getChildNodes() {
- return this.dom_children;
- }
-
- public Node getFirstChild() {
- return this.document;
- }
-
- public String getLocalName() {
- return null;
- }
-
- public Node getLastChild() {
- return this.document;
- }
-
- public String getNamespaceURI() {
- return null;
- }
-
- public Node getNextSibling() {
- return null;
- }
-
- public String getNodeName() {
- return "MathMLApplet";
- }
-
- public short getNodeType() {
- return 9;
- }
-
- public String getNodeValue() throws DOMException {
- return null;
- }
-
- public Document getOwnerDocument() {
- return null;
- }
-
- public Node getParentNode() {
- return null;
- }
-
- public Node getPreviousSibling() {
- return null;
- }
-
- public boolean hasChildNodes() {
- return true;
- }
-
- public Node insertBefore(Node var1, Node var2) throws DOMException {
- return null;
- }
-
- public void normalize() {
- }
-
- public Node removeChild(Node var1) throws DOMException {
- return null;
- }
-
- public Node replaceChild(Node var1, Node var2) throws DOMException {
- return null;
- }
-
- public void setNodeValue(String var1) throws DOMException {
- }
-
- public boolean supports(String var1, String var2) {
- return false;
- }
-
- public String getPrefix() {
- return null;
- }
-
- public void setPrefix(String var1) throws DOMException {
- }
- }
-