See: Description
Class | Description |
---|---|
AboutBox |
The AboutBox class defines a dialog box containing information about ODE
Toolkit, which appears when the user selects "About ODE Toolkit..." in the
Help menu.
|
DirFieldDialog |
The DirFieldDialog class is responsible for the dialog box that appears when
the user selects "Options..." in the Direction Field sub-menu of the Graph
Options menu.
|
EulerPanel |
EulerPanel is the solver panel for setting options meaningful to the Euler
solver.
|
Label3DDialog |
The Label3DDialog class is responsible for the dialog box that appears when
the user selects the "Labels..." option in the Graph Options menu while
inside a 3D Graph Panel.
|
LabelDialog |
The LabelDialog class is responsible for the dialog box that appears when the
user selects the "Labels..." option in the Graph Options menu.
|
OpenURLDialog |
The OpenURLDialog class is responsible for the dialog box that appears when
the user selects 'Open from Web...' from the File menu in ODE Toolkit.
|
RBPanel |
RBPanel is the solver panel for setting options meaningful to the Rosenbrock
solver.
|
RKPanel |
The panel for solver options applicable to the Runge-Kutta solver.
|
Scale3DDialog |
The Scale3DDialog class is responsible for the dialog box that appears when
the user selects the 'Change Window Ranges...' option in the Graph Options
menu of a 3D graph panel.
|
ScaleDialog |
The ScaleDialog class is responsible for the dialog box that appears when the
user selects the 'Change Window Ranges...' option in the Graph Options menu.
|
SolverChoicePanel |
This class holds the dialog box that allows the user to change solver choice.
|
SolverOptionsPanel |
The solver options panel.
|
SolverPanel |
SolverPanel is the parent of all solver option panels.
|
This package contains the specifications for the different types of dialog boxes that are used in ODEToolkit. AboutBox.java: Describes the dialog box that is accessed by Help > About ODE Toolkit. Extends the Java Dialog class. DirFieldDialog.java: DirFieldDialog extends the JDialog class and provides the dialog box for creating a directional field. EulerPanel.java: This class contains the panel for the seeing of Euler solver. It extends SolverPanel.java. Label3DDialog: This class provides a dialog box for choosing the title, labels, and variable to display on each axis of the 3D plot. LabelDialog: This class provides a dialog box for choosing the title, and labels to display on each axis of the 2D plot. ODELibraryDialog.java: This file is currently not used and commented out. It is used for creating a dialog box that the user can look at the file in the library, some preview, and open a file. OpenURLDialog.java: This class provides a dialog for the user to input the URL of the ode file to open. RBPanel.java: This class contains the panel for the seeing of Rosenbrock solver. It extends SolverPanel.java. RKPanel.java: This class contains the panel for the seeing of Runge-Kutta solver. It extends SolverPanel.java. Scale3DDialog.java: This class provides a dialog box for the user to specify the range to be shown, and whether the auto-scale is on, on each of the 3 axes in 3D Plots. ScaleDialog.java: This class provides a dialog box for the user to specify the range to be shown, and whether the auto-scale is on, on each of the 2 axes in 2D Plots. SolverChoicePanel.java: This class contains radio buttons for user to choose the solver. SolverOptionsPanel.java: This class contains a SolverChoicePanel that allows the user to change solver, the SolverOptionsPanels which it changes automatically when the solver is changed, and the buttons at the bottom for resetting or closing the dialog. SolverPanel.java: This class is a base class for solver panels, where the parameters specific to the solver can be configured.