Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25994/tags
Modified Files:
ImageTag.java LinkTag.java
Log Message:
Fix bug #900128 RemarkNode.setText() does not set Text
Add override setText() to StringNode and RemarkNode.
Add unit tests to excercise the new code.
Remove remaining XX_FILTER constants.
Index: ImageTag.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/ImageTag.java,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** ImageTag.java 25 Jan 2004 21:33:12 -0000 1.42
--- ImageTag.java 29 Feb 2004 12:52:21 -0000 1.43
***************
*** 39,44 ****
public class ImageTag extends Tag
{
- public static final String IMAGE_TAG_FILTER="-i";
-
/**
* The set of names handled by this tag.
--- 39,42 ----
Index: LinkTag.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/LinkTag.java,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** LinkTag.java 2 Jan 2004 16:24:55 -0000 1.47
--- LinkTag.java 29 Feb 2004 12:52:21 -0000 1.48
***************
*** 37,42 ****
public class LinkTag extends CompositeTag
{
- public static final String LINK_TAG_FILTER="-l";
-
/**
* The set of names handled by this tag.
--- 37,40 ----
|