Table

Document Actions
last edited 4 years ago by yervand

description

This part implements table.

Figure

inpins

  1. GEOM - ID = 1 - Sets frame size
    • X-coordinate - int
    • Y-coordinate - int
    • Width - int
    • Height - int
  2. GETDATA - ID=2 - Returns elements from the table - Object [][]
    • no param
  3. ADDROW - ID=3 - Adds row to the table
    • Add a row at the end of table with input data - Object []
  4. DELROW - ID=4 - Deletes row from the table
    • Row number to delete - int
  5. INSROW - ID=5 - Insert row from into the table
    • Row number where to insert - int
    • Array of data to insert - Object[]
  6. CHANGEROW - ID=6 - Change data in the specified row
    • Row number to change - int
    • Array of data to change - Object[]
  7. SHOW - ID=7 - Show table
    • no param
  8. HIDE - ID=8 - Hide table
    • no param
  9. SETCOLUMNS - ID=9 - Sets column names
    • Array of column names - String []
  10. ADDCOLUMN - ID=10 - Add column at the end of table
    • Column name - String
  11. DELCOLUMN - ID=11 - Deletes specified column
    • Column number - int
  12. SETDATA - ID=12 - Sets data by a two dimensional array to the table
    • Data to be set into the table - Object [][]

outpins

  1. GETDATA - ID=51 - Returns elements from the table - Object [][]
    • Object [][]
  2. 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