All Packages Class Hierarchy This Package Previous Next Index
Class framework.awt.InteractiveModuleDialog
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Window
|
+----java.awt.Dialog
|
+----framework.awt.InteractiveModuleDialog
- public abstract class InteractiveModuleDialog
- extends Dialog
The parent class of all Interactive Display modules. It creates a simple
Dialog with a panel and several buttons below the panel. The panel is
supposed to be filled by subclasses of this abstract class.
-
buttonsPanel
-
-
CONTINUE
-
-
DEFAULT
-
-
HELP
-
-
interactivePanel
-
-
RELOAD
-
-
STOP
-
-
waitingThread
- Used to suspend the running process.
-
InteractiveModuleDialog(Frame, String, int)
- Fill the dialog with a panel and an ok button.
-
continueButtonPressed()
- Continue button pressed, the window will be hidden.
-
defaultButtonPressed()
- Default button pressed, the default feature maps are loaded.
-
helpButtonPressed()
- Help button pressed, a help dialog will appear.
-
reloadButtonPressed()
- Reload button pressed, the input feature map data will be reloaded.
-
resumeRunning()
- Stop waiting and resume the running process.
-
setVisible(boolean)
- Draw the DisplayDialog.
-
stopButtonPressed()
- Stop button pressed, the window will be hidden.
-
suspendRunning()
- Suspend the running process.
CONTINUE
public static final int CONTINUE
STOP
public static final int STOP
DEFAULT
public static final int DEFAULT
RELOAD
public static final int RELOAD
HELP
public static final int HELP
interactivePanel
protected Panel interactivePanel
buttonsPanel
protected Panel buttonsPanel
waitingThread
protected Thread waitingThread
- Used to suspend the running process.
InteractiveModuleDialog
public InteractiveModuleDialog(Frame frame,
String title,
int buttons)
- Fill the dialog with a panel and an ok button. The panel may be filled
by subclasses of this class.
helpButtonPressed
public void helpButtonPressed()
- Help button pressed, a help dialog will appear.
defaultButtonPressed
public void defaultButtonPressed()
- Default button pressed, the default feature maps are loaded.
reloadButtonPressed
public void reloadButtonPressed()
- Reload button pressed, the input feature map data will be reloaded.
stopButtonPressed
public void stopButtonPressed()
- Stop button pressed, the window will be hidden.
continueButtonPressed
public void continueButtonPressed()
- Continue button pressed, the window will be hidden.
setVisible
public void setVisible(boolean visable)
- Draw the DisplayDialog.
- Overrides:
- setVisible in class Component
suspendRunning
public void suspendRunning()
- Suspend the running process.
resumeRunning
public void resumeRunning()
- Stop waiting and resume the running process.
All Packages Class Hierarchy This Package Previous Next Index