Inheritance diagram for javawrapper::DisplayParameters:
Public Member Functions | |
void | actionPerformed (ActionEvent e) |
Responds to button events. | |
void | SaveCurrentWindow (String sFileName) |
Saves the data in the current set of tables as a tab-delimited text file. | |
void | SetLastTouched (EnhancedTable oTable) |
Sets a table as last touched by the user. | |
Protected Member Functions | |
EnhancedTable | GetLastTouchedTable () |
Discovers which EnhancedTable in the parameter editing window has focus. | |
Package Functions | |
DisplayParameters (GUIManager oManager, MainWindow oWindow, ParameterEdit oChoicesWindow) | |
Constructor. | |
Package Attributes | |
GUIManager | m_oManager |
GUIManager object containing the data to display. | |
ParameterEdit | m_oChoicesWindow |
Parameter chooser window. | |
Vector | mp_oAllTables |
Vector holding all of the EnhancedTable objects in this window. | |
MainWindow | m_oMainWindow |
Main window - we will need to communicate directories with it. | |
Private Attributes | |
String | m_sHelpID = "windows.parameters_window" |
Help ID. |
This window displays the data in a set of EnhancedTables. The user can edit data, copy and paste it between a spreadsheet, or print it off. Copyright: Copyright (c) Charles D. Canham 2003 Company: Institute of Ecosystem Studies
javawrapper::DisplayParameters::DisplayParameters | ( | GUIManager | oManager, | |
MainWindow | oWindow, | |||
ParameterEdit | oChoicesWindow | |||
) | [inline, package] |
Constructor.
Builds the GUI.
oWindow | Window that's the parent of this dialog. | |
oManager | GUIManager object. | |
oChoicesWindow | Which choices are picked |
void javawrapper::DisplayParameters::actionPerformed | ( | ActionEvent | e | ) | [inline] |
Responds to button events.
If OK, then the parameter window is constructed and this window is closed. If Cancel, then this window is closed.
e | ActionEvent object. |
EnhancedTable javawrapper::DisplayParameters::GetLastTouchedTable | ( | ) | [inline, protected] |
Discovers which EnhancedTable in the parameter editing window has focus.
void javawrapper::DisplayParameters::SaveCurrentWindow | ( | String | sFileName | ) | [inline] |
Saves the data in the current set of tables as a tab-delimited text file.
sFileName | File name to save to. |
void javawrapper::DisplayParameters::SetLastTouched | ( | EnhancedTable | oTable | ) | [inline] |
Sets a table as last touched by the user.
oTable | Table to be set as last touched. |
Implements javawrapper::EnhancedTableWindow.