home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2001 December / dppcpro1201.iso / Extras / maple / Viewer / WebEQ / MMLViewerInstall.cab / MMLViewerApplet.cab / webeq3 / dom / MathMLDOMApplet.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-05-24  |  2.2 KB  |  112 lines

  1. package webeq3.dom;
  2.  
  3. import java.applet.Applet;
  4. import org.w3c.dom.DOMException;
  5. import org.w3c.dom.Document;
  6. import org.w3c.dom.NamedNodeMap;
  7. import org.w3c.dom.Node;
  8. import org.w3c.dom.NodeList;
  9. import webeq3.app.Equation;
  10.  
  11. public class MathMLDOMApplet extends Applet implements Node {
  12.    protected Equation document = null;
  13.    protected MathMLDOMNodeList dom_children;
  14.  
  15.    public void init() {
  16.       this.dom_children = new MathMLDOMNodeList();
  17.    }
  18.  
  19.    public Node appendChild(Node var1) throws DOMException {
  20.       return null;
  21.    }
  22.  
  23.    public Node cloneNode(boolean var1) {
  24.       return null;
  25.    }
  26.  
  27.    public NamedNodeMap getAttributes() {
  28.       return null;
  29.    }
  30.  
  31.    public NodeList getChildNodes() {
  32.       return this.dom_children;
  33.    }
  34.  
  35.    public Node getFirstChild() {
  36.       return this.document;
  37.    }
  38.  
  39.    public String getLocalName() {
  40.       return null;
  41.    }
  42.  
  43.    public Node getLastChild() {
  44.       return this.document;
  45.    }
  46.  
  47.    public String getNamespaceURI() {
  48.       return null;
  49.    }
  50.  
  51.    public Node getNextSibling() {
  52.       return null;
  53.    }
  54.  
  55.    public String getNodeName() {
  56.       return "MathMLApplet";
  57.    }
  58.  
  59.    public short getNodeType() {
  60.       return 9;
  61.    }
  62.  
  63.    public String getNodeValue() throws DOMException {
  64.       return null;
  65.    }
  66.  
  67.    public Document getOwnerDocument() {
  68.       return null;
  69.    }
  70.  
  71.    public Node getParentNode() {
  72.       return null;
  73.    }
  74.  
  75.    public Node getPreviousSibling() {
  76.       return null;
  77.    }
  78.  
  79.    public boolean hasChildNodes() {
  80.       return true;
  81.    }
  82.  
  83.    public Node insertBefore(Node var1, Node var2) throws DOMException {
  84.       return null;
  85.    }
  86.  
  87.    public void normalize() {
  88.    }
  89.  
  90.    public Node removeChild(Node var1) throws DOMException {
  91.       return null;
  92.    }
  93.  
  94.    public Node replaceChild(Node var1, Node var2) throws DOMException {
  95.       return null;
  96.    }
  97.  
  98.    public void setNodeValue(String var1) throws DOMException {
  99.    }
  100.  
  101.    public boolean supports(String var1, String var2) {
  102.       return false;
  103.    }
  104.  
  105.    public String getPrefix() {
  106.       return null;
  107.    }
  108.  
  109.    public void setPrefix(String var1) throws DOMException {
  110.    }
  111. }
  112.