Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20594/filters
Modified Files:
HasParentFilter.java
Log Message:
DocComment fix and another getText() signature.
Index: HasParentFilter.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters/HasParentFilter.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** HasParentFilter.java 24 Jan 2004 23:57:49 -0000 1.1
--- HasParentFilter.java 8 Jun 2004 10:20:19 -0000 1.2
***************
*** 33,42 ****
/**
! * This class accepts all tags that have a parent acceptable to the filter.
*/
public class HasParentFilter implements NodeFilter
{
/**
! * The filter to apply to children.
*/
public NodeFilter mFilter;
--- 33,42 ----
/**
! * This class accepts all tags that have a parent acceptable to another filter.
*/
public class HasParentFilter implements NodeFilter
{
/**
! * The filter to apply to the parent.
*/
public NodeFilter mFilter;
|