JavaBrowser 1.0, © Copyright 1996, Alexey Goloshubin, Jeremy Cook, is governed by the GNU Library General Public License available at ftp://prep.ai.mit.edu/pub/gnu/GNUinfo/LGPL. This license requires that we make publicly available all source code changes we have made to the original distribution. These are the changes that have been made: The following constructor has been added to the class Parser: public Parser(String str) { buffer = str.getBytes(); size = buffer.length; next_pos=0; more=true; flagTokenIsTag=false; flagTokenIsSpecial=false; flagPreMode=false; flagSpaceBefore=false; } The following lines have been added to the class Parser: public int getPos() { return pos; }; int pos; The following line in the method getNextToken in the class Parser has been deleted: int pos;