[Htmlparser-cvs] htmlparser/src/org/htmlparser/tags Tag.java,1.33,1.34
Brought to you by:
derrickoswald
From: <jke...@us...> - 2003-06-25 03:46:40
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1:/tmp/cvs-serv26404/src/org/htmlparser/tags Modified Files: Tag.java Log Message: added EscapeRemovingNode decorator, remove lots of private methods and field that were never used in numerous classes Index: Tag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/Tag.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** Tag.java 22 Jun 2003 21:37:45 -0000 1.33 --- Tag.java 25 Jun 2003 03:46:37 -0000 1.34 *************** *** 59,68 **** public final static String TAGNAME = "$<TAGNAME>$"; public final static String EMPTYTAG = "$<EMPTYTAG>$"; - private final static int TAG_BEFORE_PARSING_STATE=1; - private final static int TAG_BEGIN_PARSING_STATE=2; - private final static int TAG_FINISHED_PARSING_STATE=3; - private final static int TAG_ILLEGAL_STATE=4; - private final static int TAG_IGNORE_DATA_STATE=5; - private final static int TAG_IGNORE_BEGIN_TAG_STATE=6; private final static String EMPTY_STRING=""; --- 59,62 ---- |