home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / JAVA / MSJAVX86.EXE / xmldso.cab / XML4IE3.cab / com / ms / xml / parser / Node.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-10-10  |  811 b   |  39 lines

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