[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/utilTests NodeListTest.java,1.21,1.22
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-11-08 21:31:00
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests In directory sc8-pr-cvs1:/tmp/cvs-serv18855/src/org/htmlparser/tests/utilTests Modified Files: NodeListTest.java Log Message: Implement generic node filtering. Added the NodeFilter interface and the filter package. Sideline tag specific scanners; tags now use only one scanner of each type, TagScanner or CompositeTagScanner (except for ScriptScanner). Obviated PeekingIterator by moving the META tag semantics to doSemanticAction, much simpler, old IteratorImpl is now PeekingIteratorImpl but deprecated. Index: NodeListTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/NodeListTest.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** NodeListTest.java 26 Oct 2003 19:46:27 -0000 1.21 --- NodeListTest.java 8 Nov 2003 21:30:57 -0000 1.22 *************** *** 126,132 **** } - public void collectInto(NodeList collectionList, String filter) { - } - public String toHtml() { return null; --- 126,129 ---- |