Re: [Htmlparser-user] How to parse a forms nodes
Brought to you by:
derrickoswald
|
From: Somik R. <so...@ya...> - 2002-12-05 04:43:06
|
for (Enumeration
e=formTag.getAllNodesVector().elements();e.hasMoreElements();) {
HTMLNode node = (HTMLNode)e.nextElement();
if (node instanceof HTMLImageTag) {
// ...
}
}
----- Original Message -----
From: "Navid H.Langaroudi" <na...@ya...>
To: <htm...@li...>
Sent: Wednesday, December 04, 2002 6:15 PM
Subject: [Htmlparser-user] How to parse a forms nodes
> Hi Somik,
> I know that HTMLFormTag has a method
> getAllNodesVector() that returns all nodes of form
> tag. But how can I use this vector to extract Tags,
> like image tags.
>
> Thanks
> Navid
> --- Somik Raha <so...@ya...> wrote:
> > Hi Folks,
> > Candidate Release 4 is out. This actually
> > contains a few minor API changes which wont affect
> > your application, but have been done to improve the
> > OO design of the system. HTMLFormScanner has been
> > improved. The major work in this release went in
> > refactoring 201 testcases - so as to make it more
> > readable, and follow the Once-And-Only-Once
> > paradigm. Well, the package size dropped about 12KB
> > (after zipping), so you can estimate how much
> > refactoring was done.. All tests are passing.
> >
> > From the Change Log,
> >
> > Integration Build 1.2 - 20021201
> > --------------------------------
> > [1] Refactored HTMLNode, API improved, now HTMLNode
> > stores
> > nodeBegin and nodeEnd.
> > [2] Refactored Testing framework - to reduce the
> > code size substantially.
> > [3] HTMLFormScanner improved to include
> > Input,TextArea, Select and Option scanners within
> >
> > You can get it from
> > http://htmlparser.sourceforge.net
> > There's an all-new Contributors Page (linked from
> > the main site). Just in case I missed anybody, or
> > you have info to add, pls let me know.
> >
> > Regards,
> > Somik
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: Microsoft Visual Studio.NET
> comprehensive development tool, built to increase your
> productivity. Try a free online hosted session at:
> http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en
> _______________________________________________
> Htmlparser-user mailing list
> Htm...@li...
> https://lists.sourceforge.net/lists/listinfo/htmlparser-user
|