com.inet.html.views
Class TableView.TableRowGroup

java.lang.Object
  extended by com.inet.html.views.TableView.TableRowGroup
Enclosing class:
TableView

public class TableView.TableRowGroup
extends java.lang.Object

Contains informations about a group of rows. My be header, body or footer Represents "THEAD" / "TBODY" / "TFOOT" / "table-header-group" / "table-row-group" / "table-footer-group"


Field Summary
static int TYPE_TBODY
           
static int TYPE_TFOOT
           
static int TYPE_THEAD
           
 
Constructor Summary
TableView.TableRowGroup(javax.swing.text.Element elem, TableView.TableContainer parent, int displayType)
          Creates a group of rows.
 
Method Summary
 java.util.List<TableView.TableRowInfo> getRows()
          Returns the rows of this group, ordered in original order
 java.lang.String toString()
          
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

TYPE_THEAD

public static final int TYPE_THEAD
See Also:
Constant Field Values

TYPE_TBODY

public static final int TYPE_TBODY
See Also:
Constant Field Values

TYPE_TFOOT

public static final int TYPE_TFOOT
See Also:
Constant Field Values
Constructor Detail

TableView.TableRowGroup

public TableView.TableRowGroup(javax.swing.text.Element elem,
                               TableView.TableContainer parent,
                               int displayType)
Creates a group of rows. A group of rows info requires a the table as parent

Parameters:
elem - the element, which defines this group of rows
parent - the parent structure element
displayType - the type of group
See Also:
TYPE_THEAD, TYPE_TBODY, TYPE_TFOOT
Method Detail

getRows

public java.util.List<TableView.TableRowInfo> getRows()
Returns the rows of this group, ordered in original order

Returns:
the rows of this group, ordered in original order, never null

toString

public java.lang.String toString()

Overrides:
toString in class java.lang.Object