From 2b571f08d091dc062cedbb9816c29dcf0cbd4f12 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Thu, 22 May 2014 07:44:52 +0100 Subject: Final commit, will release later today. --- doc/jcgp/gui/GUI.html | 195 ++++++++++++++++++--- doc/jcgp/gui/class-use/GUI.html | 9 +- doc/jcgp/gui/console/ConsolePane.html | 4 +- doc/jcgp/gui/console/class-use/ConsolePane.html | 4 +- doc/jcgp/gui/console/package-frame.html | 4 +- doc/jcgp/gui/console/package-summary.html | 4 +- doc/jcgp/gui/console/package-tree.html | 4 +- doc/jcgp/gui/console/package-use.html | 4 +- doc/jcgp/gui/dragresize/HorizontalDragResize.html | 4 +- doc/jcgp/gui/dragresize/VerticalDragResize.html | 4 +- .../dragresize/class-use/HorizontalDragResize.html | 4 +- .../dragresize/class-use/VerticalDragResize.html | 4 +- doc/jcgp/gui/dragresize/package-frame.html | 4 +- doc/jcgp/gui/dragresize/package-summary.html | 4 +- doc/jcgp/gui/dragresize/package-tree.html | 4 +- doc/jcgp/gui/dragresize/package-use.html | 4 +- doc/jcgp/gui/package-frame.html | 4 +- doc/jcgp/gui/package-summary.html | 4 +- doc/jcgp/gui/package-tree.html | 4 +- doc/jcgp/gui/package-use.html | 4 +- doc/jcgp/gui/population/ChromosomePane.html | 13 +- doc/jcgp/gui/population/FunctionSelector.html | 10 +- doc/jcgp/gui/population/GUIGene.GUIGeneState.html | 24 +-- doc/jcgp/gui/population/GUIGene.html | 16 +- doc/jcgp/gui/population/GUIInput.html | 14 +- doc/jcgp/gui/population/GUINode.html | 14 +- doc/jcgp/gui/population/GUIOutput.html | 14 +- doc/jcgp/gui/population/PopulationPane.html | 4 +- .../gui/population/class-use/ChromosomePane.html | 4 +- .../gui/population/class-use/FunctionSelector.html | 4 +- .../population/class-use/GUIGene.GUIGeneState.html | 12 +- doc/jcgp/gui/population/class-use/GUIGene.html | 4 +- doc/jcgp/gui/population/class-use/GUIInput.html | 4 +- doc/jcgp/gui/population/class-use/GUINode.html | 9 +- doc/jcgp/gui/population/class-use/GUIOutput.html | 4 +- .../gui/population/class-use/PopulationPane.html | 4 +- doc/jcgp/gui/population/package-frame.html | 4 +- doc/jcgp/gui/population/package-summary.html | 14 +- doc/jcgp/gui/population/package-tree.html | 4 +- doc/jcgp/gui/population/package-use.html | 9 +- doc/jcgp/gui/settings/SettingsPane.html | 41 ++++- doc/jcgp/gui/settings/class-use/SettingsPane.html | 4 +- doc/jcgp/gui/settings/package-frame.html | 4 +- doc/jcgp/gui/settings/package-summary.html | 9 +- doc/jcgp/gui/settings/package-tree.html | 4 +- doc/jcgp/gui/settings/package-use.html | 9 +- .../settings/parameters/GUIBooleanParameter.html | 4 +- .../settings/parameters/GUIDoubleParameter.html | 4 +- .../settings/parameters/GUIIntegerParameter.html | 4 +- doc/jcgp/gui/settings/parameters/GUIParameter.html | 4 +- .../parameters/class-use/GUIBooleanParameter.html | 4 +- .../parameters/class-use/GUIDoubleParameter.html | 4 +- .../parameters/class-use/GUIIntegerParameter.html | 4 +- .../parameters/class-use/GUIParameter.html | 4 +- .../gui/settings/parameters/package-frame.html | 4 +- .../gui/settings/parameters/package-summary.html | 4 +- doc/jcgp/gui/settings/parameters/package-tree.html | 4 +- doc/jcgp/gui/settings/parameters/package-use.html | 4 +- doc/jcgp/gui/settings/testcase/TestCaseTable.html | 4 +- .../settings/testcase/class-use/TestCaseTable.html | 4 +- doc/jcgp/gui/settings/testcase/package-frame.html | 4 +- .../gui/settings/testcase/package-summary.html | 4 +- doc/jcgp/gui/settings/testcase/package-tree.html | 4 +- doc/jcgp/gui/settings/testcase/package-use.html | 4 +- 64 files changed, 403 insertions(+), 201 deletions(-) (limited to 'doc/jcgp/gui') diff --git a/doc/jcgp/gui/GUI.html b/doc/jcgp/gui/GUI.html index 73bbe2a..c8274c9 100644 --- a/doc/jcgp/gui/GUI.html +++ b/doc/jcgp/gui/GUI.html @@ -2,9 +2,9 @@ - + GUI - + @@ -124,7 +124,17 @@ extends javafx.application.Application The user interface is divided into 3 main components: the node grid (PopulationPane), the control pane (SettingsPane) and the console (ConsolePane). Click on any of the links in - brackets to see more information about each interface component. + brackets to see more information about each interface component. +

+ This class also contains the instance of JCGP responsible for + running the experiments in GUI mode. JCGP's execution must be delegated + to a separate thread so that the GUI remains unblocked. This is done using + a JavaFX Service which calls nextGeneration() in a loop + until it is interrupted by the main JavaFX thread. +
+ This service also handles flushing the console in a thread safe way. This + is done by synchronizing the nextGeneration() and flush() + method calls on a lock object.
Author:
Eduardo Pedroni
@@ -164,43 +174,66 @@ extends javafx.application.Application static java.lang.String -BAD_SELECTION_COLOUR  +BAD_SELECTION_COLOUR +
A string containing the hexadecimal colour used for representing a bad selection.
+ static double -CONSOLE_MIN_HEIGHT  +CONSOLE_MIN_HEIGHT +
The minimum width of the console pane, to prevent it + from being resized beyond visibility.
+ static java.lang.String -GOOD_SELECTION_COLOUR  +GOOD_SELECTION_COLOUR +
A string containing the hexadecimal colour used for representing a good selection.
+ static java.lang.String -HARD_HIGHLIGHT_COLOUR  +HARD_HIGHLIGHT_COLOUR +
A string containing the hexadecimal colour used for representing a hard highlight.
+ static java.lang.String -MEDIUM_HIGHLIGHT_COLOUR  +MEDIUM_HIGHLIGHT_COLOUR +
A string containing the hexadecimal colour used for a medium highlight.
+ static java.lang.String -NEUTRAL_COLOUR  +NEUTRAL_COLOUR +
A string containing the hexadecimal colour used for representing neutrality.
+ static java.lang.String -NEUTRAL_SELECTION_COLOUR  +NEUTRAL_SELECTION_COLOUR +
A string containing the hexadecimal colour used for representing a neutral selection.
+ static double -RESIZE_MARGIN  +RESIZE_MARGIN +
The width or height of the area that can be clicked on + to drag-resize a pane.
+ static double -SETTINGS_MIN_WIDTH  +SETTINGS_MIN_WIDTH +
The minimum width of the settings pane, to prevent it + from being resized beyond visibility.
+ static java.lang.String -SOFT_HIGHLIGHT_COLOUR  +SOFT_HIGHLIGHT_COLOUR +
A string containing the hexadecimal colour used for a soft highlight.
+ @@ -522,6 +610,11 @@ extends javafx.application.Application
  • runPause

    public void runPause()
    +
    Run/pause method. + Run the experiment if it is paused, or pause it if it is running. +
    + This method is the callback used by the run/pause button. It + controls the jcgp service.
  • @@ -531,6 +624,11 @@ extends javafx.application.Application
  • step

    public void step()
    +
    Perform a single generation using nextGeneration(). +
    + On top of that, this method performs all of the housekeeping + that is normally done before and after running, such as + refreshing the chromosome panes.
  • @@ -540,6 +638,9 @@ extends javafx.application.Application
  • reset

    public void reset()
    +
    Reset button callback. If the parameters are valid, + this resets the entire experiment by calling reset() + on jcgp.
  • @@ -549,6 +650,8 @@ extends javafx.application.Application
  • reDraw

    public void reDraw()
    +
    Does a complete GUI refresh. + This is potentially lengthy, so use with care.
  • @@ -558,6 +661,7 @@ extends javafx.application.Application
  • updateFunctionSelector

    public void updateFunctionSelector()
    +
    Refresh the function selector, used when functions are enabled or disabled.
  • @@ -567,6 +671,10 @@ extends javafx.application.Application
  • isWorking

    public boolean isWorking()
    +
    +
    Returns:
    +
    true if jcgp is evolving.
    +
  • @@ -577,6 +685,13 @@ extends javafx.application.Application

    bringFunctionSelector

    public void bringFunctionSelector(javafx.scene.input.MouseEvent event,
                                       GUINode node)
    +
    Relocate the function selector to the right position + relative to the specified node and set it visible.
    +
    +
    Parameters:
    +
    event - the mouse event containing cursor coordinates.
    +
    node - the node whose function should be changed.
    +
    @@ -586,6 +701,10 @@ extends javafx.application.Application
  • getExperiment

    public JCGP getExperiment()
    +
    +
    Returns:
    +
    a reference to the JCGP experiment.
    +
  • @@ -595,6 +714,13 @@ extends javafx.application.Application
  • evaluateTestCase

    public void evaluateTestCase(TestCaseProblem.TestCase<java.lang.Object> testCase)
    +
    Starts the evaluation process with the given test case. + It does so by calling evaluateTestCase() on + the population pane.
    +
    +
    Parameters:
    +
    testCase - the test case to evaluate.
    +
  • @@ -604,6 +730,8 @@ extends javafx.application.Application
  • hideGeneValues

    public void hideGeneValues()
    +
    Hide all evaluated values. This should be called when + evaluations are no longer being performed.
  • @@ -613,6 +741,14 @@ extends javafx.application.Application
  • setEvaluating

    public void setEvaluating(boolean value)
    +
    Set the system into evaluation mode. + When in evaluation mode, the population pane + refreshes the node values whenever connection + changes happen.
    +
    +
    Parameters:
    +
    value - true if evaluations are happening, false otherwise.
    +
  • @@ -622,6 +758,10 @@ extends javafx.application.Application
  • getStage

    public javafx.stage.Stage getStage()
    +
    +
    Returns:
    +
    a reference to the GUI stage.
    +
  • @@ -631,6 +771,7 @@ extends javafx.application.Application
  • flushConsole

    public void flushConsole()
    +
    Writes all buffered content out to the GUI console.
  • @@ -640,6 +781,10 @@ extends javafx.application.Application
  • getChromosomeIndex

    public int getChromosomeIndex()
    +
    +
    Returns:
    +
    the index of the chromosome currently being looked at.
    +
  • diff --git a/doc/jcgp/gui/class-use/GUI.html b/doc/jcgp/gui/class-use/GUI.html index 815fc1b..0b08936 100644 --- a/doc/jcgp/gui/class-use/GUI.html +++ b/doc/jcgp/gui/class-use/GUI.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.GUI - + @@ -143,7 +143,10 @@ -
    SettingsPane(GUI gui)  +SettingsPane(GUI gui) +
    Create a new instance of SettingsPane associated + with the specified GUI object.
    + diff --git a/doc/jcgp/gui/console/ConsolePane.html b/doc/jcgp/gui/console/ConsolePane.html index 8690aec..93e9559 100644 --- a/doc/jcgp/gui/console/ConsolePane.html +++ b/doc/jcgp/gui/console/ConsolePane.html @@ -2,9 +2,9 @@ - + ConsolePane - + diff --git a/doc/jcgp/gui/console/class-use/ConsolePane.html b/doc/jcgp/gui/console/class-use/ConsolePane.html index 1809f6a..3ecf53e 100644 --- a/doc/jcgp/gui/console/class-use/ConsolePane.html +++ b/doc/jcgp/gui/console/class-use/ConsolePane.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.console.ConsolePane - + diff --git a/doc/jcgp/gui/console/package-frame.html b/doc/jcgp/gui/console/package-frame.html index ef3c747..0558620 100644 --- a/doc/jcgp/gui/console/package-frame.html +++ b/doc/jcgp/gui/console/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui.console - + diff --git a/doc/jcgp/gui/console/package-summary.html b/doc/jcgp/gui/console/package-summary.html index eb9d7cb..8f2fbc0 100644 --- a/doc/jcgp/gui/console/package-summary.html +++ b/doc/jcgp/gui/console/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.console - + diff --git a/doc/jcgp/gui/console/package-tree.html b/doc/jcgp/gui/console/package-tree.html index 505425b..fc550b9 100644 --- a/doc/jcgp/gui/console/package-tree.html +++ b/doc/jcgp/gui/console/package-tree.html @@ -2,9 +2,9 @@ - + jcgp.gui.console Class Hierarchy - + diff --git a/doc/jcgp/gui/console/package-use.html b/doc/jcgp/gui/console/package-use.html index e978efe..d2a7e64 100644 --- a/doc/jcgp/gui/console/package-use.html +++ b/doc/jcgp/gui/console/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui.console - + diff --git a/doc/jcgp/gui/dragresize/HorizontalDragResize.html b/doc/jcgp/gui/dragresize/HorizontalDragResize.html index df298b7..0ef222f 100644 --- a/doc/jcgp/gui/dragresize/HorizontalDragResize.html +++ b/doc/jcgp/gui/dragresize/HorizontalDragResize.html @@ -2,9 +2,9 @@ - + HorizontalDragResize - + diff --git a/doc/jcgp/gui/dragresize/VerticalDragResize.html b/doc/jcgp/gui/dragresize/VerticalDragResize.html index 5b6c2b3..4897b4e 100644 --- a/doc/jcgp/gui/dragresize/VerticalDragResize.html +++ b/doc/jcgp/gui/dragresize/VerticalDragResize.html @@ -2,9 +2,9 @@ - + VerticalDragResize - + diff --git a/doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html b/doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html index 7fcf5da..cab2c25 100644 --- a/doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html +++ b/doc/jcgp/gui/dragresize/class-use/HorizontalDragResize.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.dragresize.HorizontalDragResize - + diff --git a/doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html b/doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html index e4c7edb..f8850ab 100644 --- a/doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html +++ b/doc/jcgp/gui/dragresize/class-use/VerticalDragResize.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.dragresize.VerticalDragResize - + diff --git a/doc/jcgp/gui/dragresize/package-frame.html b/doc/jcgp/gui/dragresize/package-frame.html index 249537a..dfa4420 100644 --- a/doc/jcgp/gui/dragresize/package-frame.html +++ b/doc/jcgp/gui/dragresize/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui.dragresize - + diff --git a/doc/jcgp/gui/dragresize/package-summary.html b/doc/jcgp/gui/dragresize/package-summary.html index 37dd0d6..35e0d97 100644 --- a/doc/jcgp/gui/dragresize/package-summary.html +++ b/doc/jcgp/gui/dragresize/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.dragresize - + diff --git a/doc/jcgp/gui/dragresize/package-tree.html b/doc/jcgp/gui/dragresize/package-tree.html index 21aeac4..acb9253 100644 --- a/doc/jcgp/gui/dragresize/package-tree.html +++ b/doc/jcgp/gui/dragresize/package-tree.html @@ -2,9 +2,9 @@ - + jcgp.gui.dragresize Class Hierarchy - + diff --git a/doc/jcgp/gui/dragresize/package-use.html b/doc/jcgp/gui/dragresize/package-use.html index 82c6559..a2a0e8e 100644 --- a/doc/jcgp/gui/dragresize/package-use.html +++ b/doc/jcgp/gui/dragresize/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui.dragresize - + diff --git a/doc/jcgp/gui/package-frame.html b/doc/jcgp/gui/package-frame.html index f7974f9..2c59e06 100644 --- a/doc/jcgp/gui/package-frame.html +++ b/doc/jcgp/gui/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui - + diff --git a/doc/jcgp/gui/package-summary.html b/doc/jcgp/gui/package-summary.html index 6eae9db..b21e2a9 100644 --- a/doc/jcgp/gui/package-summary.html +++ b/doc/jcgp/gui/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui - + diff --git a/doc/jcgp/gui/package-tree.html b/doc/jcgp/gui/package-tree.html index 02729e9..9637f6e 100644 --- a/doc/jcgp/gui/package-tree.html +++ b/doc/jcgp/gui/package-tree.html @@ -2,9 +2,9 @@ - + jcgp.gui Class Hierarchy - + diff --git a/doc/jcgp/gui/package-use.html b/doc/jcgp/gui/package-use.html index 10a05f5..f7e90dd 100644 --- a/doc/jcgp/gui/package-use.html +++ b/doc/jcgp/gui/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui - + diff --git a/doc/jcgp/gui/population/ChromosomePane.html b/doc/jcgp/gui/population/ChromosomePane.html index 1ce9bd7..4904373 100644 --- a/doc/jcgp/gui/population/ChromosomePane.html +++ b/doc/jcgp/gui/population/ChromosomePane.html @@ -2,9 +2,9 @@ - + ChromosomePane - + @@ -140,6 +140,13 @@ var activeTableTab = "activeTableTab";
    public class ChromosomePane
     extends javafx.scene.control.ScrollPane
    +
    This extension of ScrollPane contains a series of + nodes, inputs and outputs spread across a grid. It also contains + all of the connection lines overlaid over the nodes, inputs and outputs.
    +
    +
    Author:
    +
    Eduardo Pedroni
    +
    @@ -411,7 +418,7 @@ extends javafx.scene.control.ScrollPane
    public boolean isEvaluating()
    Returns:
    -
    the evaluating
    +
    the evaluating attribute.
    diff --git a/doc/jcgp/gui/population/FunctionSelector.html b/doc/jcgp/gui/population/FunctionSelector.html index 311c20c..90fdcd1 100644 --- a/doc/jcgp/gui/population/FunctionSelector.html +++ b/doc/jcgp/gui/population/FunctionSelector.html @@ -2,9 +2,9 @@ - + FunctionSelector - + @@ -140,6 +140,12 @@ var activeTableTab = "activeTableTab";
    public class FunctionSelector
     extends javafx.scene.layout.VBox
    +
    A menu class, exposes all of the allowed functions + when called by a node, so that the node function can be changed.
    +
    +
    Author:
    +
    Eduardo Pedroni
    +
    diff --git a/doc/jcgp/gui/population/GUIGene.GUIGeneState.html b/doc/jcgp/gui/population/GUIGene.GUIGeneState.html index 78acf8f..cd0c1d8 100644 --- a/doc/jcgp/gui/population/GUIGene.GUIGeneState.html +++ b/doc/jcgp/gui/population/GUIGene.GUIGeneState.html @@ -2,9 +2,9 @@ - + GUIGene.GUIGeneState - + @@ -145,13 +145,13 @@ extends java.lang.Enum<ACTIVE_HOVER  -FORBIDDEN_TARGET  +HOVER  -HOVER  +INDIRECT_HOVER  -INDIRECT_HOVER  +INVALID_TARGET  LOCKED_HOVER  @@ -166,7 +166,7 @@ extends java.lang.Enum<SOURCE  -TARGET  +VALID_TARGET  @@ -279,13 +279,13 @@ the order they are declared.
    public static final GUIGene.GUIGeneState SOURCE
    - + @@ -297,13 +297,13 @@ the order they are declared.
    public static final GUIGene.GUIGeneState NO_CHANGE_TARGET
    - + diff --git a/doc/jcgp/gui/population/GUIGene.html b/doc/jcgp/gui/population/GUIGene.html index 462a5e3..ec66952 100644 --- a/doc/jcgp/gui/population/GUIGene.html +++ b/doc/jcgp/gui/population/GUIGene.html @@ -2,9 +2,9 @@ - + GUIGene - + @@ -297,7 +297,7 @@ extends javafx.scene.Group abstract void -setConnections(GUIGene.GUIGeneState newState)  +setConnectionStates(GUIGene.GUIGeneState newState)  void @@ -492,10 +492,6 @@ extends javafx.scene.Group
  • removeLocks

    public abstract void removeLocks(int value)
    -
    -
    Parameters:
    -
    value -
    -
  • @@ -525,13 +521,13 @@ extends javafx.scene.Group
    public abstract Connection getChangingConnection()
    - + diff --git a/doc/jcgp/gui/population/GUIInput.html b/doc/jcgp/gui/population/GUIInput.html index 839f46d..522ddb4 100644 --- a/doc/jcgp/gui/population/GUIInput.html +++ b/doc/jcgp/gui/population/GUIInput.html @@ -2,9 +2,9 @@ - + GUIInput - + @@ -263,7 +263,7 @@ extends void -setConnections(GUIGene.GUIGeneState newState) +setConnectionStates(GUIGene.GUIGeneState newState)
    Set all connections to a given state.
    @@ -364,17 +364,17 @@ extends + @@ -209,7 +218,10 @@ extends javafx.scene.layout.AnchorPane Constructor and Description -SettingsPane(GUI gui)  +SettingsPane(GUI gui) +
    Create a new instance of SettingsPane associated + with the specified GUI object.
    + @@ -327,6 +339,12 @@ extends javafx.scene.layout.AnchorPane
  • SettingsPane

    public SettingsPane(GUI gui)
    +
    Create a new instance of SettingsPane associated + with the specified GUI object.
    +
    +
    Parameters:
    +
    gui - a reference to this object's parent.
    +
  • @@ -344,6 +362,10 @@ extends javafx.scene.layout.AnchorPane
  • isExperimentRunning

    public boolean isExperimentRunning()
    +
    +
    Returns:
    +
    true if the experiment is currently evolving something, false otherwise.
    +
  • @@ -381,7 +403,10 @@ extends javafx.scene.layout.AnchorPane
    public void revalidateParameters()
    Calls validate() on every parameter. This is called whenever a parameter changes, so that other parameters update their status in case they were dependent on the - changed parameter.
    + changed parameter. +

    + This also disables the controls if a reset is necessary, preventing the experiment + from running until it has happened.
    @@ -392,7 +417,9 @@ extends javafx.scene.layout.AnchorPane

    applyParameters

    public void applyParameters()
    Calls applyValue() on every parameter. This is called when a reset occurs, so that - the new value will be used as a reference instead of the old reference value.
    + the new value will be used as a reference instead of the old reference value. +

    + It also closes the test case table, just in case.
    @@ -408,8 +435,8 @@ extends javafx.scene.layout.AnchorPane running or finished.
    Parameters:
    -
    running - true if the experiment is running
    -
    finished - true if the experiment is finished
    +
    running - true if the experiment is running.
    +
    finished - true if the experiment is finished.
    diff --git a/doc/jcgp/gui/settings/class-use/SettingsPane.html b/doc/jcgp/gui/settings/class-use/SettingsPane.html index 7232d02..3576f53 100644 --- a/doc/jcgp/gui/settings/class-use/SettingsPane.html +++ b/doc/jcgp/gui/settings/class-use/SettingsPane.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.settings.SettingsPane - + diff --git a/doc/jcgp/gui/settings/package-frame.html b/doc/jcgp/gui/settings/package-frame.html index 673f613..c3822e6 100644 --- a/doc/jcgp/gui/settings/package-frame.html +++ b/doc/jcgp/gui/settings/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings - + diff --git a/doc/jcgp/gui/settings/package-summary.html b/doc/jcgp/gui/settings/package-summary.html index 8c8abb6..a2cae25 100644 --- a/doc/jcgp/gui/settings/package-summary.html +++ b/doc/jcgp/gui/settings/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings - + @@ -84,7 +84,10 @@
    SettingsPane -  + +
    This is a fairly hefty class which encapsulates the entire right-hand + control pane.
    + diff --git a/doc/jcgp/gui/settings/package-tree.html b/doc/jcgp/gui/settings/package-tree.html index d7b9375..cde64c6 100644 --- a/doc/jcgp/gui/settings/package-tree.html +++ b/doc/jcgp/gui/settings/package-tree.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings Class Hierarchy - + diff --git a/doc/jcgp/gui/settings/package-use.html b/doc/jcgp/gui/settings/package-use.html index d833851..4ba25d1 100644 --- a/doc/jcgp/gui/settings/package-use.html +++ b/doc/jcgp/gui/settings/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui.settings - + @@ -99,7 +99,10 @@ -SettingsPane  +SettingsPane +
    This is a fairly hefty class which encapsulates the entire right-hand + control pane.
    + diff --git a/doc/jcgp/gui/settings/parameters/GUIBooleanParameter.html b/doc/jcgp/gui/settings/parameters/GUIBooleanParameter.html index 31fb114..db48a71 100644 --- a/doc/jcgp/gui/settings/parameters/GUIBooleanParameter.html +++ b/doc/jcgp/gui/settings/parameters/GUIBooleanParameter.html @@ -2,9 +2,9 @@ - + GUIBooleanParameter - + diff --git a/doc/jcgp/gui/settings/parameters/GUIDoubleParameter.html b/doc/jcgp/gui/settings/parameters/GUIDoubleParameter.html index da42511..d9f3a5b 100644 --- a/doc/jcgp/gui/settings/parameters/GUIDoubleParameter.html +++ b/doc/jcgp/gui/settings/parameters/GUIDoubleParameter.html @@ -2,9 +2,9 @@ - + GUIDoubleParameter - + diff --git a/doc/jcgp/gui/settings/parameters/GUIIntegerParameter.html b/doc/jcgp/gui/settings/parameters/GUIIntegerParameter.html index 519fc75..49f2365 100644 --- a/doc/jcgp/gui/settings/parameters/GUIIntegerParameter.html +++ b/doc/jcgp/gui/settings/parameters/GUIIntegerParameter.html @@ -2,9 +2,9 @@ - + GUIIntegerParameter - + diff --git a/doc/jcgp/gui/settings/parameters/GUIParameter.html b/doc/jcgp/gui/settings/parameters/GUIParameter.html index 82171cb..a6c5092 100644 --- a/doc/jcgp/gui/settings/parameters/GUIParameter.html +++ b/doc/jcgp/gui/settings/parameters/GUIParameter.html @@ -2,9 +2,9 @@ - + GUIParameter - + diff --git a/doc/jcgp/gui/settings/parameters/class-use/GUIBooleanParameter.html b/doc/jcgp/gui/settings/parameters/class-use/GUIBooleanParameter.html index 69e9611..73ef280 100644 --- a/doc/jcgp/gui/settings/parameters/class-use/GUIBooleanParameter.html +++ b/doc/jcgp/gui/settings/parameters/class-use/GUIBooleanParameter.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.settings.parameters.GUIBooleanParameter - + diff --git a/doc/jcgp/gui/settings/parameters/class-use/GUIDoubleParameter.html b/doc/jcgp/gui/settings/parameters/class-use/GUIDoubleParameter.html index 589b5cf..9e2643a 100644 --- a/doc/jcgp/gui/settings/parameters/class-use/GUIDoubleParameter.html +++ b/doc/jcgp/gui/settings/parameters/class-use/GUIDoubleParameter.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.settings.parameters.GUIDoubleParameter - + diff --git a/doc/jcgp/gui/settings/parameters/class-use/GUIIntegerParameter.html b/doc/jcgp/gui/settings/parameters/class-use/GUIIntegerParameter.html index ff5b259..1112b9d 100644 --- a/doc/jcgp/gui/settings/parameters/class-use/GUIIntegerParameter.html +++ b/doc/jcgp/gui/settings/parameters/class-use/GUIIntegerParameter.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.settings.parameters.GUIIntegerParameter - + diff --git a/doc/jcgp/gui/settings/parameters/class-use/GUIParameter.html b/doc/jcgp/gui/settings/parameters/class-use/GUIParameter.html index ea3ff57..ff820bf 100644 --- a/doc/jcgp/gui/settings/parameters/class-use/GUIParameter.html +++ b/doc/jcgp/gui/settings/parameters/class-use/GUIParameter.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.settings.parameters.GUIParameter - + diff --git a/doc/jcgp/gui/settings/parameters/package-frame.html b/doc/jcgp/gui/settings/parameters/package-frame.html index 2b9b587..ae92d93 100644 --- a/doc/jcgp/gui/settings/parameters/package-frame.html +++ b/doc/jcgp/gui/settings/parameters/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings.parameters - + diff --git a/doc/jcgp/gui/settings/parameters/package-summary.html b/doc/jcgp/gui/settings/parameters/package-summary.html index 5af6b96..b30c04b 100644 --- a/doc/jcgp/gui/settings/parameters/package-summary.html +++ b/doc/jcgp/gui/settings/parameters/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings.parameters - + diff --git a/doc/jcgp/gui/settings/parameters/package-tree.html b/doc/jcgp/gui/settings/parameters/package-tree.html index 218974a..b2b1e24 100644 --- a/doc/jcgp/gui/settings/parameters/package-tree.html +++ b/doc/jcgp/gui/settings/parameters/package-tree.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings.parameters Class Hierarchy - + diff --git a/doc/jcgp/gui/settings/parameters/package-use.html b/doc/jcgp/gui/settings/parameters/package-use.html index eff0576..c328458 100644 --- a/doc/jcgp/gui/settings/parameters/package-use.html +++ b/doc/jcgp/gui/settings/parameters/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui.settings.parameters - + diff --git a/doc/jcgp/gui/settings/testcase/TestCaseTable.html b/doc/jcgp/gui/settings/testcase/TestCaseTable.html index 734ab46..1668f8a 100644 --- a/doc/jcgp/gui/settings/testcase/TestCaseTable.html +++ b/doc/jcgp/gui/settings/testcase/TestCaseTable.html @@ -2,9 +2,9 @@ - + TestCaseTable - + diff --git a/doc/jcgp/gui/settings/testcase/class-use/TestCaseTable.html b/doc/jcgp/gui/settings/testcase/class-use/TestCaseTable.html index e6a55cf..e265c24 100644 --- a/doc/jcgp/gui/settings/testcase/class-use/TestCaseTable.html +++ b/doc/jcgp/gui/settings/testcase/class-use/TestCaseTable.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.settings.testcase.TestCaseTable - + diff --git a/doc/jcgp/gui/settings/testcase/package-frame.html b/doc/jcgp/gui/settings/testcase/package-frame.html index 783cc21..26e62ba 100644 --- a/doc/jcgp/gui/settings/testcase/package-frame.html +++ b/doc/jcgp/gui/settings/testcase/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings.testcase - + diff --git a/doc/jcgp/gui/settings/testcase/package-summary.html b/doc/jcgp/gui/settings/testcase/package-summary.html index 2f080a2..4c44b31 100644 --- a/doc/jcgp/gui/settings/testcase/package-summary.html +++ b/doc/jcgp/gui/settings/testcase/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings.testcase - + diff --git a/doc/jcgp/gui/settings/testcase/package-tree.html b/doc/jcgp/gui/settings/testcase/package-tree.html index 3ac9b0e..856d664 100644 --- a/doc/jcgp/gui/settings/testcase/package-tree.html +++ b/doc/jcgp/gui/settings/testcase/package-tree.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings.testcase Class Hierarchy - + diff --git a/doc/jcgp/gui/settings/testcase/package-use.html b/doc/jcgp/gui/settings/testcase/package-use.html index d13c075..632c665 100644 --- a/doc/jcgp/gui/settings/testcase/package-use.html +++ b/doc/jcgp/gui/settings/testcase/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui.settings.testcase - + -- cgit v1.2.3