I'm trying to build HTML table parser (available not satisfying my needs), I
need to know what is in every cell, along with its cell, row and table
number plus the attributes that go with those tags.
I create Table, TableRow and TableCell objects each containing an array list
of subelements. That works fine when the tables are not nested, so my
question is how would I design Table that holds Rows that hold Cells which
again can contain the whole Table!
need to know what is in every cell, along with its cell, row and table
number plus the attributes that go with those tags.
I create Table, TableRow and TableCell objects each containing an array list
of subelements. That works fine when the tables are not nested, so my
question is how would I design Table that holds Rows that hold Cells which
again can contain the whole Table!
Comment