Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31782/src/org/htmlparser
Modified Files:
PrototypicalNodeFactory.java
Log Message:
Incorporate ObjectTag submitted by Enrico Triolo.
Index: PrototypicalNodeFactory.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/PrototypicalNodeFactory.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** PrototypicalNodeFactory.java 14 Jun 2004 01:51:10 -0000 1.9
--- PrototypicalNodeFactory.java 26 Jun 2004 11:25:01 -0000 1.10
***************
*** 61,64 ****
--- 61,65 ----
import org.htmlparser.tags.LinkTag;
import org.htmlparser.tags.MetaTag;
+ import org.htmlparser.tags.ObjectTag;
import org.htmlparser.tags.OptionTag;
import org.htmlparser.tags.ScriptTag;
***************
*** 274,277 ****
--- 275,279 ----
registerTag (new LinkTag ());
registerTag (new MetaTag ());
+ registerTag (new ObjectTag ());
registerTag (new OptionTag ());
registerTag (new ScriptTag ());
|