Table
last edited 4 years ago by yervand
description
This part implements table.
Figure

inpins
- GEOM - ID = 1 - Sets frame size
- X-coordinate - int
- Y-coordinate - int
- Width - int
- Height - int
- GETDATA - ID=2 - Returns elements from the table - Object [][]
- no param
- ADDROW - ID=3 - Adds row to the table
- Add a row at the end of table with input data - Object []
- DELROW - ID=4 - Deletes row from the table
- Row number to delete - int
- INSROW - ID=5 - Insert row from into the table
- Row number where to insert - int
- Array of data to insert - Object[]
- CHANGEROW - ID=6 - Change data in the specified row
- Row number to change - int
- Array of data to change - Object[]
- SHOW - ID=7 - Show table
- no param
- HIDE - ID=8 - Hide table
- no param
- SETCOLUMNS - ID=9 - Sets column names
- Array of column names - String []
- ADDCOLUMN - ID=10 - Add column at the end of table
- Column name - String
- DELCOLUMN - ID=11 - Deletes specified column
- Column number - int
- SETDATA - ID=12 - Sets data by a two dimensional array to the table
- Data to be set into the table - Object [][]
outpins
- GETDATA - ID=51 - Returns elements from the table - Object [][]
- Object [][]
- GETDATA - ID=52 - notifies about table changes - either by user or by inpin event
- no param
links to cvs
configuration file revision 1.0 Table.vcb at sourceforge.net
java file revision 1.0 Table.java at sourceforge.net
status
alpha release