home *** CD-ROM | disk | FTP | other *** search
- package com.ms.xml.parser;
-
- import com.ms.xml.om.Element;
- import com.ms.xml.util.Atom;
- import com.ms.xml.util.Name;
- import com.ms.xml.util.XMLOutputStream;
- import java.io.IOException;
- import java.util.BitSet;
-
- class Node {
- BitSet first;
- BitSet last;
- static BitSet empty;
- static Name namePCDATA = Name.create("PCDATA");
-
- BitSet firstpos(int var1) {
- if (empty == null) {
- empty = new BitSet(var1);
- }
-
- return empty;
- }
-
- BitSet lastpos(int var1) {
- return this.firstpos(var1);
- }
-
- Element toSchema(int var1, int var2, Element var3) {
- return null;
- }
-
- void save(XMLOutputStream var1, int var2, int var3, Atom var4) throws IOException {
- }
-
- Node clone(ContentModel var1) {
- return new Node();
- }
-
- void calcfollowpos(BitSet[] var1) {
- }
-
- boolean nullable() {
- return true;
- }
- }
-