Index
org.hsqldb.util.ZaurusEditor
ZaurusEditor implements an search/input/edit form to 
 search/view/update/insert table records.
 
 ZaurusEditor()
	ZaurusEditor()
   
 actionPerformed(ActionEvent)
	actionPerformed(ActionEvent)
  actionPerformed method is the main entry point
 which interprets the buttons and initiates the actions.
   clearStatus()
	clearStatus()
  clearStatus deletes the status line.
   printStatus(String)
	printStatus(String)
  printStatus prints a text into the status line below the panel.
   refresh(Connection)
	refresh(Connection)
  refresh will read again the meta data of the
 actual database.
 
 ZaurusEditor
ZaurusEditor
public ZaurusEditor()
 
 printStatus
printStatus
public static void printStatus(String text)
printStatus prints a text into the status line below the panel.
String value will be shown
   clearStatus
clearStatus
public static void clearStatus()
clearStatus deletes the status line.
 actionPerformed
actionPerformed
public void actionPerformed(ActionEvent e)
actionPerformed method is the main entry point
 which interprets the buttons and initiates the actions.
ActionEvent value is been sent to ZaurusEditor as ActionListener
 The possible events are:
 refresh
refresh
public void refresh(Connection c)
refresh will read again the meta data of the
 actual database. This is useful after changes of the table
 structures for instance creating or dropping tables, or
 altering tabel. The method will be called if one asks to
 refresh the tree or if the connection to the database is
 changed.
Connection is the actual connection to
 the database
  Index