Class DataTable
package: net.jxta.myjxta.plugins.beam
public class DataTable
Field Summary
private int
private int
private Hashtable
Constructor Summary
public
DataTable(Hashtable table)
   Constructor - requires
 
Method Summary
public String
getColumn(String columnheading)
   Method to return a String array representing the a column of data
 
public int
   Method to return the number of columns in the DataTable
 
public int
   Method to return the number of rows in the DataTable
 
public Properties
getRow(int row)
   Method to return a java.util.Properties representing an unordered collection of data in a row with named keys.
 
Field Detail
cols
private int cols = 0

rows
private int rows = 0

table
private Hashtable table = null
Constructor Detail
DataTable
public DataTable(Hashtable table)
Constructor - requires
Method Detail
getColumn
public String getColumn(String columnheading)
Method to return a String array representing the a column of data
Parameters:
columnheading name of column to retrieve.

getNumberOfColumns
public int getNumberOfColumns()
Method to return the number of columns in the DataTable

getNumberOfRows
public int getNumberOfRows()
Method to return the number of rows in the DataTable

getRow
public Properties getRow(int row)
Method to return a java.util.Properties representing an unordered collection of data in a row with named keys.
Parameters:
row the integer row to retrieve.