Uses of Class
org.htmlunit.html.HtmlTableRow
-
Packages that use HtmlTableRow Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content.org.htmlunit.html.serializer Contains the html serializer implementations.org.htmlunit.javascript.host.html Implementations of the HTML JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. -
-
Uses of HtmlTableRow in org.htmlunit.html
Fields in org.htmlunit.html declared as HtmlTableRow Modifier and Type Field Description private HtmlTableRow
HtmlTable.RowIterator. nextRow_
Methods in org.htmlunit.html that return HtmlTableRow Modifier and Type Method Description HtmlTableRow
HtmlTableCell. getEnclosingRow()
Returns the table row containing this cell.HtmlTableRow
HtmlTable. getRow(int index)
HtmlTableRow
HtmlTable. getRowById(java.lang.String id)
Finds and return the row with the specified id.HtmlTableRow
HtmlTable.RowIterator. next()
HtmlTableRow
HtmlTable.RowIterator. nextRow()
Methods in org.htmlunit.html that return types with arguments of type HtmlTableRow Modifier and Type Method Description java.util.List<HtmlTableRow>
HtmlTable. getRows()
java.util.List<HtmlTableRow>
TableRowGroup. getRows()
Returns a list of table rows contained in this element.java.util.Iterator<HtmlTableRow>
HtmlTable.RowIterator. iterator()
-
Uses of HtmlTableRow in org.htmlunit.html.serializer
Methods in org.htmlunit.html.serializer with parameters of type HtmlTableRow Modifier and Type Method Description protected void
HtmlSerializerNormalizedText. appendTableRow(HtmlSerializerNormalizedText.HtmlSerializerTextBuilder builder, HtmlTableRow htmlTableRow)
ProcessHtmlTableRow
.protected void
HtmlSerializerVisibleText. appendTableRow(HtmlSerializerVisibleText.HtmlSerializerTextBuilder builder, HtmlTableRow htmlTableRow, HtmlSerializerVisibleText.Mode mode)
ProcessHtmlTableRow
.Method parameters in org.htmlunit.html.serializer with type arguments of type HtmlTableRow Modifier and Type Method Description protected boolean
HtmlSerializerNormalizedText. appendTableRows(HtmlSerializerNormalizedText.HtmlSerializerTextBuilder builder, java.util.List<HtmlTableRow> rows, boolean first, TableRowGroup skipParent1, TableRowGroup skipParent2)
ProcessHtmlTableRow
.protected boolean
HtmlSerializerVisibleText. appendTableRows(HtmlSerializerVisibleText.HtmlSerializerTextBuilder builder, HtmlSerializerVisibleText.Mode mode, java.util.List<HtmlTableRow> rows, boolean first, TableRowGroup skipParent1, TableRowGroup skipParent2)
ProcessHtmlTableRow
. -
Uses of HtmlTableRow in org.htmlunit.javascript.host.html
Methods in org.htmlunit.javascript.host.html that return HtmlTableRow Modifier and Type Method Description private HtmlTableRow
HTMLTableCellElement. getRow()
Returns the row element which contains this cell's HTML element; may returnnull
.Methods in org.htmlunit.javascript.host.html with parameters of type HtmlTableRow Modifier and Type Method Description protected boolean
HTMLTableElement. isContainedRow(HtmlTableRow row)
Indicates if the row belongs to this container.protected boolean
RowContainer. isContainedRow(HtmlTableRow row)
Indicates if the row belongs to this container.
-