[Htmlparser-cvs] htmlparser/src/org/htmlparser PrototypicalNodeFactory.java,1.3,1.4
Brought to you by:
derrickoswald
From: <der...@pr...> - 2004-01-27 13:46:16
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11005 Modified Files: PrototypicalNodeFactory.java Log Message: Add TableHeaderTag submitted by Pim Schrama. Robustify TableRow against null getChildren(). Index: PrototypicalNodeFactory.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/PrototypicalNodeFactory.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PrototypicalNodeFactory.java 14 Jan 2004 02:53:46 -0000 1.3 --- PrototypicalNodeFactory.java 24 Jan 2004 18:13:29 -0000 1.4 *************** *** 171,174 **** --- 171,175 ---- registerTag (new StyleTag ()); registerTag (new TableColumn ()); + registerTag (new TableHeader ()); registerTag (new TableRow ()); registerTag (new TableTag ()); |