com.bankframe.fe.html
Class Table

java.lang.Object
  extended bycom.bankframe.fe.html.HTMLWidget
      extended bycom.bankframe.fe.html.Table

public class Table
extends HTMLWidget

This class implements a HTML table widget.


Constructor Summary
Table()
          Default Constructor.
Table(int border, int width)
          Constructor.
Table(java.util.Vector r)
          Constructor.
 
Method Summary
 void addRow(Row newRow)
          This method adds a row to this table.
 java.lang.String toHTML()
          This method returns a HTML representation of this widget.
 
Methods inherited from class com.bankframe.fe.html.HTMLWidget
quote, quote
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Table

public Table()
Default Constructor.


Table

public Table(int border,
             int width)
Constructor.

Parameters:
border - the width of table border
width - the width of table

Table

public Table(java.util.Vector r)
Constructor.

Parameters:
r - a vector of rows to add to this table
Method Detail

addRow

public void addRow(Row newRow)
This method adds a row to this table.

Parameters:
newRow - the new row to add to this table

toHTML

public java.lang.String toHTML()
This method returns a HTML representation of this widget.

Specified by:
toHTML in class HTMLWidget
Returns:
a string containing HTML markup


Copyright © 2005, 2007, Oracle. All rights reserved.