[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/scannersTests CompositeTagScannerTest.java,1.60
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-07-02 00:49:39
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32670/src/org/htmlparser/tests/scannersTests Modified Files: CompositeTagScannerTest.java TagScannerTest.java Log Message: Part four of a multiphase refactoring. Most internals now use the Tag interface. This interface has been broadened to add set/get scanner and set/get endtag. Removed the org.htmlparser.tags.Tag class and moved the remaining (minor) functionality to the TagNode class. So now tags inherit directly from TagNode or CompositeTag. ** NOTE: If you have subclassed org.htmlparser.tags.Tag, use org.htmlparser.nodes.TagNode now.** Removed deprecated methods getTagBegin/getTagEnd and deleted unused classes: PeekingIterator and it's Implementation. Index: TagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/TagScannerTest.java,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** TagScannerTest.java 14 Jan 2004 02:53:47 -0000 1.40 --- TagScannerTest.java 2 Jul 2004 00:49:30 -0000 1.41 *************** *** 27,31 **** package org.htmlparser.tests.scannersTests; ! import org.htmlparser.tags.Tag; import org.htmlparser.tests.ParserTestCase; import org.htmlparser.util.ParserException; --- 27,31 ---- package org.htmlparser.tests.scannersTests; ! import org.htmlparser.Tag; import org.htmlparser.tests.ParserTestCase; import org.htmlparser.util.ParserException; Index: CompositeTagScannerTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/scannersTests/CompositeTagScannerTest.java,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** CompositeTagScannerTest.java 24 May 2004 16:18:33 -0000 1.60 --- CompositeTagScannerTest.java 2 Jul 2004 00:49:30 -0000 1.61 *************** *** 29,32 **** --- 29,33 ---- import org.htmlparser.Node; import org.htmlparser.PrototypicalNodeFactory; + import org.htmlparser.Tag; import org.htmlparser.Text; import org.htmlparser.nodes.AbstractNode; *************** *** 38,42 **** import org.htmlparser.tags.TableRow; import org.htmlparser.tags.TableTag; - import org.htmlparser.tags.Tag; import org.htmlparser.tests.ParserTestCase; import org.htmlparser.util.ParserException; --- 39,42 ---- |