home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / JAVA / MSJAVX86.EXE / xmldso.cab / com / ms / xml / parser / Node.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-05  |  1.1 KB  |  46 lines

  1. package com.ms.xml.parser;
  2.  
  3. import com.ms.xml.om.Element;
  4. import com.ms.xml.util.Atom;
  5. import com.ms.xml.util.Name;
  6. import com.ms.xml.util.XMLOutputStream;
  7. import java.io.IOException;
  8. import java.util.BitSet;
  9.  
  10. class Node {
  11.    BitSet first;
  12.    BitSet last;
  13.    static BitSet empty;
  14.    static Name namePCDATA = Name.create("PCDATA");
  15.  
  16.    BitSet firstpos(int var1) {
  17.       if (empty == null) {
  18.          empty = new BitSet(var1);
  19.       }
  20.  
  21.       return empty;
  22.    }
  23.  
  24.    BitSet lastpos(int var1) {
  25.       return this.firstpos(var1);
  26.    }
  27.  
  28.    Element toSchema(int var1, int var2, Element var3) {
  29.       return null;
  30.    }
  31.  
  32.    void save(XMLOutputStream var1, int var2, int var3, Atom var4) throws IOException {
  33.    }
  34.  
  35.    Node clone(ContentModel var1) {
  36.       return new Node();
  37.    }
  38.  
  39.    void calcfollowpos(BitSet[] var1) {
  40.    }
  41.  
  42.    boolean nullable() {
  43.       return true;
  44.    }
  45. }
  46.