Class TableRowGroup

All Implemented Interfaces:
Serializable, Cloneable, Element, Node
Direct Known Subclasses:
HtmlTableBody, HtmlTableFooter, HtmlTableHeader

public abstract class TableRowGroup extends HtmlElement
Superclass for the wrappers for the HTML elements "thead", "tbody" and "tfoot".
See Also:
  • Constructor Details

    • TableRowGroup

      protected TableRowGroup(String qualifiedName, SgmlPage page, Map<String,DomAttr> attributes)
      Creates an instance of TableRowGroup.
      Parameters:
      qualifiedName - the qualified name of the element type to instantiate
      page - the HtmlPage that contains this element
      attributes - the initial attributes
  • Method Details

    • getRows

      public final List<HtmlTableRow> getRows()
      Returns a list of table rows contained in this element.
      Returns:
      a list of table rows
    • getAlignAttribute

      public final String getAlignAttribute()
      Returns the value of the attribute align. Refer to the HTML 4.01 documentation for details on the use of this attribute.
      Returns:
      the value of the attribute align or an empty string if that attribute isn't defined.
    • getCharAttribute

      public final String getCharAttribute()
      Returns the value of the attribute char. Refer to the HTML 4.01 documentation for details on the use of this attribute.
      Returns:
      the value of the attribute char or an empty string if that attribute isn't defined.
    • getCharoffAttribute

      public final String getCharoffAttribute()
      Returns the value of the attribute charoff. Refer to the HTML 4.01 documentation for details on the use of this attribute.
      Returns:
      the value of the attribute charoff or an empty string if that attribute isn't defined.
    • getValignAttribute

      public final String getValignAttribute()
      Returns the value of the attribute valign. Refer to the HTML 4.01 documentation for details on the use of this attribute.
      Returns:
      the value of the attribute valign or an empty string if that attribute isn't defined.