I have an arbitrary length, one dimensional table of hyperlinks. How do I create an array of WebLinks from this table?
WebResponse response;
. . .
WebTable table = response.getTableStartingWith("blah blah blah"); //
select the table burried in the document
TableCell tc = table.getTableCell(0,0); //
select the first cell in the table
WebLink[] wl = tc.getLinks(); //
get the links - error - only gets one link, not all of them in the table
any ideas?
Thanks.
Gary
<<attachment: winmail.dat>>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
