- void genPanel()
Usage: genPanel ( )
Creates a StringBuffer that will generate a new table based on the current row/col information
and the styles in the superclass
Parameters
Info
- int getCols()
Usage: getCols ( )
Returns the number of columns currently in the table
Parameters
Info
- Return:
The number of columns in the table
- Access:
public
- int getRows()
Usage: getRows ( )
Returns the current number of rows
Parameters
Info
- Return:
The number of current rows
- Access:
public
- StringBuffer paint()
Usage: paint ( [$return = false] )
Paints the component to the screen, or returns its value to be drawn later
Parameters
- return $return - set to true if you want to return the component instead of displaying it
@
Info
- void setCols()
Usage: setCols ( $cols )
Mutates the number of columns in the table
Parameters
- cols $cols - The number of columns
Info
- Throws:
ArgumentDataTypeException If the passed number of columns is not of type integer
@
- Access:
public
- void setRows()
Usage: setRows ( $rows )
Mutates the number of rows in the table
Parameters
- rows $rows - The number of rows
Info
- Throws:
ArgumentDataTypeException If the passed number of rows is not of type integer
@
- Access:
public
- void __construct()
Usage: __construct ( $rows, $cols )
Creates a new table based on the passed integers
Parameters
- rows $rows - The number of rows in the table
@
- cols $cols - The number of columns in the table
Info