From c35a6806df01481c1b169cd0fc47660ea1cc10fb Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Wed, 14 May 2014 01:32:51 +0100 Subject: Refactored Mutable, commented a little bit of the GUI package --- doc/jcgp/gui/GUI.html | 14 +- doc/jcgp/gui/class-use/GUI.html | 4 +- doc/jcgp/gui/console/ConsolePane.html | 458 +++++++++++++++++++++ doc/jcgp/gui/console/class-use/ConsolePane.html | 124 ++++++ doc/jcgp/gui/console/package-frame.html | 6 +- doc/jcgp/gui/console/package-summary.html | 6 +- doc/jcgp/gui/console/package-tree.html | 6 +- 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 | 6 +- doc/jcgp/gui/package-tree.html | 4 +- doc/jcgp/gui/package-use.html | 10 +- doc/jcgp/gui/population/ChromosomePane.html | 4 +- doc/jcgp/gui/population/FunctionSelector.html | 4 +- doc/jcgp/gui/population/GUIGene.GUIGeneState.html | 4 +- doc/jcgp/gui/population/GUIGene.html | 4 +- doc/jcgp/gui/population/GUIInput.html | 4 +- doc/jcgp/gui/population/GUINode.html | 4 +- doc/jcgp/gui/population/GUIOutput.html | 4 +- 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 | 4 +- 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 | 4 +- 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 | 4 +- doc/jcgp/gui/population/package-tree.html | 4 +- doc/jcgp/gui/population/package-use.html | 4 +- doc/jcgp/gui/settings/SettingsPane.html | 4 +- doc/jcgp/gui/settings/class-use/SettingsPane.html | 4 +- doc/jcgp/gui/settings/package-frame.html | 4 +- doc/jcgp/gui/settings/package-summary.html | 4 +- doc/jcgp/gui/settings/package-tree.html | 4 +- doc/jcgp/gui/settings/package-use.html | 4 +- .../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, 722 insertions(+), 132 deletions(-) create mode 100644 doc/jcgp/gui/console/ConsolePane.html create mode 100644 doc/jcgp/gui/console/class-use/ConsolePane.html (limited to 'doc/jcgp/gui') diff --git a/doc/jcgp/gui/GUI.html b/doc/jcgp/gui/GUI.html index 8b879fa..73bbe2a 100644 --- a/doc/jcgp/gui/GUI.html +++ b/doc/jcgp/gui/GUI.html @@ -2,9 +2,9 @@ - + GUI - + @@ -116,7 +116,15 @@ var activeTableTab = "activeTableTab";
public class GUI
 extends javafx.application.Application
-
Main class for the graphical user interface (GUI)
+
Main class for the graphical user interface (GUI). +

+ This class declares the main method used when running the GUI. + In addition, all main GUI panes are declared and instantiated here. +

+ 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.
Author:
Eduardo Pedroni
diff --git a/doc/jcgp/gui/class-use/GUI.html b/doc/jcgp/gui/class-use/GUI.html index 4f8dc98..815fc1b 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 - + diff --git a/doc/jcgp/gui/console/ConsolePane.html b/doc/jcgp/gui/console/ConsolePane.html new file mode 100644 index 0000000..8690aec --- /dev/null +++ b/doc/jcgp/gui/console/ConsolePane.html @@ -0,0 +1,458 @@ + + + + + +ConsolePane + + + + + + + + + + + + +
+
jcgp.gui.console
+

Class ConsolePane

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • javafx.scene.Node
    • +
    • +
        +
      • javafx.scene.Parent
      • +
      • +
          +
        • javafx.scene.layout.Region
        • +
        • +
            +
          • javafx.scene.layout.Pane
          • +
          • +
              +
            • javafx.scene.layout.AnchorPane
            • +
            • +
                +
              • jcgp.gui.console.ConsolePane
              • +
              +
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    javafx.css.Styleable, javafx.event.EventTarget, Console
    +
    +
    +
    +
    public class ConsolePane
    +extends javafx.scene.layout.AnchorPane
    +implements Console
    +
    Console pane used by the GUI to display CGP output messages. + This class realises Console. It consists of a JavaFX + TextArea and a StringBuffer. The buffer is filled + as print messages are queued. Calling flush() writes the + contents of the buffer to the TextArea and empties the buffer.
    +
    +
    Author:
    +
    Eduardo Pedroni
    +
    See Also:
    +
    Console
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Property Summary

      +
        +
      • + + +

        Properties inherited from class javafx.scene.layout.Region

        +backgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, heightProperty, insetsProperty, maxHeightProperty, maxWidthProperty, minHeightProperty, minWidthProperty, opaqueInsetsProperty, paddingProperty, prefHeightProperty, prefWidthProperty, scaleShapeProperty, shapeProperty, snapToPixelProperty, widthProperty
      • +
      +
        +
      • + + +

        Properties inherited from class javafx.scene.Parent

        +impl_traversalEngineProperty, needsLayoutProperty
      • +
      +
        +
      • + + +

        Properties inherited from class javafx.scene.Node

        +blendModeProperty, boundsInLocalProperty, boundsInParentProperty, cacheHintProperty, cacheProperty, clipProperty, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, focusedProperty, focusTraversableProperty, hoverProperty, idProperty, impl_showMnemonicsProperty, inputMethodRequestsProperty, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParentTransformProperty, localToSceneTransformProperty, managedProperty, mouseTransparentProperty, nodeOrientationProperty, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, pickOnBoundsProperty, pressedProperty, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, styleProperty, translateXProperty, translateYProperty, translateZProperty, visibleProperty
      • +
      +
    • +
    + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from class javafx.scene.layout.Region

        +USE_COMPUTED_SIZE, USE_PREF_SIZE
      • +
      +
        +
      • + + +

        Fields inherited from class javafx.scene.Node

        +BASELINE_OFFSET_SAME_AS_HEIGHT
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ConsolePane() +
      Creates a new instance of this class.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidflush() +
      Outputs all buffered messages to the console.
      +
      voidprint(java.lang.String s) +
      Prints a string without line break at the end (unless the string + itself specifies one).
      +
      voidprintln(java.lang.String s) +
      Prints a string and automatically adds a line break at the end.
      +
      +
        +
      • + + +

        Methods inherited from class javafx.scene.layout.AnchorPane

        +clearConstraints, getBottomAnchor, getLeftAnchor, getRightAnchor, getTopAnchor, setBottomAnchor, setLeftAnchor, setRightAnchor, setTopAnchor
      • +
      +
        +
      • + + +

        Methods inherited from class javafx.scene.layout.Pane

        +getChildren
      • +
      +
        +
      • + + +

        Methods inherited from class javafx.scene.layout.Region

        +backgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, getBackground, getBorder, getClassCssMetaData, getCssMetaData, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getWidth, heightProperty, impl_computeGeomBounds, impl_createPeer, impl_updatePeer, insetsProperty, isCacheShape, isCenterShape, isResizable, isScaleShape, isSnapToPixel, layoutInArea, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, opaqueInsetsProperty, paddingProperty, positionInArea, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, resize, scaleShapeProperty, setBackground, setBorder, setCacheShape, setCenterShape, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setOpaqueInsets, setPadding, setPrefHeight, setPrefSize, setPrefWidth, setScaleShape, setShape, setSnapToPixel, shapeProperty, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapToPixelProperty, widthProperty
      • +
      +
        +
      • + + +

        Methods inherited from class javafx.scene.Parent

        +getBaselineOffset, getChildrenUnmodifiable, getImpl_traversalEngine, getStylesheets, impl_getAllParentStylesheets, impl_processMXNode, impl_traversalEngineProperty, isNeedsLayout, layout, lookup, needsLayoutProperty, requestLayout, setImpl_traversalEngine
      • +
      +
        +
      • + + +

        Methods inherited from class javafx.scene.Node

        +addEventFilter, addEventHandler, applyCss, autosize, blendModeProperty, boundsInLocalProperty, boundsInParentProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, computeAreaInScreen, contains, contains, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, fireEvent, focusedProperty, focusTraversableProperty, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getContentBias, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInputMethodRequests, getLayoutBounds, getLayoutX, getLayoutY, getLocalToParentTransform, getLocalToSceneTransform, getNodeOrientation, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnInputMethodTextChanged, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseClicked, getOnMouseDragEntered, getOnMouseDragExited, getOnMouseDragged, getOnMouseDragOver, getOnMouseDragReleased, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnRotate, getOnRotationFinished, getOnRotationStarted, getOnScroll, getOnScrollFinished, getOnScrollStarted, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOnZoom, getOnZoomFinished, getOnZoomStarted, getOpacity, getParent, getProperties, getPseudoClassStates, getRotate, getRotationAxis, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleableParent, getStyleClass, getTransforms, getTranslateX, getTranslateY, getTranslateZ, getTypeSelector, getUserData, hasProperties, hoverProperty, idProperty, impl_getAccessible, impl_getLeafTransform, impl_getMatchingStyles, impl_getPeer, impl_getPivotX, impl_getPivotY, impl_getPivotZ, impl_getStyleMap, impl_hasTransforms, impl_isShowMnemonics, impl_isTreeVisible, impl_pickNode, impl_processCSS, impl_reapplyCSS, impl_setShowMnemonics, impl_setStyleMap, impl_showMnemonicsProperty, impl_syncPeer, impl_transformsChanged, impl_traverse, inputMethodRequestsProperty, intersects, intersects, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isHover, isManaged, isMouseTransparent, isPickOnBounds, isPressed, isVisible, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToParent, localToParent, localToParentTransformProperty, localToScene, localToScene, localToScene, localToScene, localToScene, localToSceneTransformProperty, localToScreen, localToScreen, localToScreen, localToScreen, localToScreen, lookupAll, managedProperty, mouseTransparentProperty, nodeOrientationProperty, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, parentToLocal, parentToLocal, parentToLocal, parentToLocal, parentToLocal, pickOnBoundsProperty, pressedProperty, pseudoClassStateChanged, relocate, removeEventFilter, removeEventHandler, requestFocus, resizeRelocate, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, screenToLocal, screenToLocal, screenToLocal, setBlendMode, setCache, setCacheHint, setClip, setCursor, setDepthTest, setDisable, setEffect, setEventDispatcher, setFocusTraversable, setId, setInputMethodRequests, setLayoutX, setLayoutY, setManaged, setMouseTransparent, setNodeOrientation, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnInputMethodTextChanged, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseClicked, setOnMouseDragEntered, setOnMouseDragExited, setOnMouseDragged, setOnMouseDragOver, setOnMouseDragReleased, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnRotate, setOnRotationFinished, setOnRotationStarted, setOnScroll, setOnScrollFinished, setOnScrollStarted, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setOnZoom, setOnZoomFinished, setOnZoomStarted, setOpacity, setPickOnBounds, setRotate, setRotationAxis, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setTranslateZ, setUserData, setVisible, snapshot, snapshot, startDragAndDrop, startFullDrag, styleProperty, toBack, toFront, toString, translateXProperty, translateYProperty, translateZProperty, usesMirroring, visibleProperty
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConsolePane

        +
        public ConsolePane()
        +
        Creates a new instance of this class.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        println

        +
        public void println(java.lang.String s)
        +
        Description copied from interface: Console
        +
        Prints a string and automatically adds a line break at the end.
        +
        +
        Specified by:
        +
        println in interface Console
        +
        Parameters:
        +
        s - the string to print.
        +
        +
      • +
      + + + +
        +
      • +

        print

        +
        public void print(java.lang.String s)
        +
        Description copied from interface: Console
        +
        Prints a string without line break at the end (unless the string + itself specifies one).
        +
        +
        Specified by:
        +
        print in interface Console
        +
        Parameters:
        +
        s - the string to print.
        +
        +
      • +
      + + + +
        +
      • +

        flush

        +
        public void flush()
        +
        Description copied from interface: Console
        +
        Outputs all buffered messages to the console. Only necessary + if concurrent accesses must be avoided.
        +
        +
        Specified by:
        +
        flush in interface Console
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + diff --git a/doc/jcgp/gui/console/class-use/ConsolePane.html b/doc/jcgp/gui/console/class-use/ConsolePane.html new file mode 100644 index 0000000..1809f6a --- /dev/null +++ b/doc/jcgp/gui/console/class-use/ConsolePane.html @@ -0,0 +1,124 @@ + + + + + +Uses of Class jcgp.gui.console.ConsolePane + + + + + + + + + + + +
+

Uses of Class
jcgp.gui.console.ConsolePane

+
+
No usage of jcgp.gui.console.ConsolePane
+ + + + + + diff --git a/doc/jcgp/gui/console/package-frame.html b/doc/jcgp/gui/console/package-frame.html index 05d367d..ef3c747 100644 --- a/doc/jcgp/gui/console/package-frame.html +++ b/doc/jcgp/gui/console/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui.console - + @@ -13,7 +13,7 @@ diff --git a/doc/jcgp/gui/console/package-summary.html b/doc/jcgp/gui/console/package-summary.html index 220f8cf..eb9d7cb 100644 --- a/doc/jcgp/gui/console/package-summary.html +++ b/doc/jcgp/gui/console/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.console - + @@ -83,7 +83,7 @@ -GUIConsole +ConsolePane
Console pane used by the GUI to display CGP output messages.
diff --git a/doc/jcgp/gui/console/package-tree.html b/doc/jcgp/gui/console/package-tree.html index 068223e..505425b 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 - + @@ -91,7 +91,7 @@ diff --git a/doc/jcgp/gui/console/package-use.html b/doc/jcgp/gui/console/package-use.html index f419778..e978efe 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 4d47043..df298b7 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 28faeb5..5b6c2b3 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 afb6008..7fcf5da 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 e36108f..e4c7edb 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 b26622d..249537a 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 576365e..37dd0d6 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 6c31fb7..21aeac4 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 5a4088d..82c6559 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 69571ff..f7974f9 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 ce27245..6eae9db 100644 --- a/doc/jcgp/gui/package-summary.html +++ b/doc/jcgp/gui/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui - + @@ -85,7 +85,7 @@ GUI -
Main class for the graphical user interface (GUI)
+
Main class for the graphical user interface (GUI).
diff --git a/doc/jcgp/gui/package-tree.html b/doc/jcgp/gui/package-tree.html index 4efeb4e..02729e9 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 d8af6e4..10a05f5 100644 --- a/doc/jcgp/gui/package-use.html +++ b/doc/jcgp/gui/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui - + @@ -108,7 +108,7 @@ GUI -
Main class for the graphical user interface (GUI)
+
Main class for the graphical user interface (GUI).
@@ -125,7 +125,7 @@ GUI -
Main class for the graphical user interface (GUI)
+
Main class for the graphical user interface (GUI).
@@ -142,7 +142,7 @@ GUI -
Main class for the graphical user interface (GUI)
+
Main class for the graphical user interface (GUI).
diff --git a/doc/jcgp/gui/population/ChromosomePane.html b/doc/jcgp/gui/population/ChromosomePane.html index b9f895a..1ce9bd7 100644 --- a/doc/jcgp/gui/population/ChromosomePane.html +++ b/doc/jcgp/gui/population/ChromosomePane.html @@ -2,9 +2,9 @@ - + ChromosomePane - + diff --git a/doc/jcgp/gui/population/FunctionSelector.html b/doc/jcgp/gui/population/FunctionSelector.html index 085ad56..311c20c 100644 --- a/doc/jcgp/gui/population/FunctionSelector.html +++ b/doc/jcgp/gui/population/FunctionSelector.html @@ -2,9 +2,9 @@ - + FunctionSelector - + diff --git a/doc/jcgp/gui/population/GUIGene.GUIGeneState.html b/doc/jcgp/gui/population/GUIGene.GUIGeneState.html index e3987de..78acf8f 100644 --- a/doc/jcgp/gui/population/GUIGene.GUIGeneState.html +++ b/doc/jcgp/gui/population/GUIGene.GUIGeneState.html @@ -2,9 +2,9 @@ - + GUIGene.GUIGeneState - + diff --git a/doc/jcgp/gui/population/GUIGene.html b/doc/jcgp/gui/population/GUIGene.html index c0968e4..462a5e3 100644 --- a/doc/jcgp/gui/population/GUIGene.html +++ b/doc/jcgp/gui/population/GUIGene.html @@ -2,9 +2,9 @@ - + GUIGene - + diff --git a/doc/jcgp/gui/population/GUIInput.html b/doc/jcgp/gui/population/GUIInput.html index 1e46a32..839f46d 100644 --- a/doc/jcgp/gui/population/GUIInput.html +++ b/doc/jcgp/gui/population/GUIInput.html @@ -2,9 +2,9 @@ - + GUIInput - + diff --git a/doc/jcgp/gui/population/GUINode.html b/doc/jcgp/gui/population/GUINode.html index 01c4ae6..51fd777 100644 --- a/doc/jcgp/gui/population/GUINode.html +++ b/doc/jcgp/gui/population/GUINode.html @@ -2,9 +2,9 @@ - + GUINode - + diff --git a/doc/jcgp/gui/population/GUIOutput.html b/doc/jcgp/gui/population/GUIOutput.html index 173f05b..a8ffa82 100644 --- a/doc/jcgp/gui/population/GUIOutput.html +++ b/doc/jcgp/gui/population/GUIOutput.html @@ -2,9 +2,9 @@ - + GUIOutput - + diff --git a/doc/jcgp/gui/population/PopulationPane.html b/doc/jcgp/gui/population/PopulationPane.html index 28a95bc..7a5c039 100644 --- a/doc/jcgp/gui/population/PopulationPane.html +++ b/doc/jcgp/gui/population/PopulationPane.html @@ -2,9 +2,9 @@ - + PopulationPane - + diff --git a/doc/jcgp/gui/population/class-use/ChromosomePane.html b/doc/jcgp/gui/population/class-use/ChromosomePane.html index 8fc23de..ec124d5 100644 --- a/doc/jcgp/gui/population/class-use/ChromosomePane.html +++ b/doc/jcgp/gui/population/class-use/ChromosomePane.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.ChromosomePane - + diff --git a/doc/jcgp/gui/population/class-use/FunctionSelector.html b/doc/jcgp/gui/population/class-use/FunctionSelector.html index fcd369a..dc159c5 100644 --- a/doc/jcgp/gui/population/class-use/FunctionSelector.html +++ b/doc/jcgp/gui/population/class-use/FunctionSelector.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.FunctionSelector - + diff --git a/doc/jcgp/gui/population/class-use/GUIGene.GUIGeneState.html b/doc/jcgp/gui/population/class-use/GUIGene.GUIGeneState.html index 3abb275..98ec0e6 100644 --- a/doc/jcgp/gui/population/class-use/GUIGene.GUIGeneState.html +++ b/doc/jcgp/gui/population/class-use/GUIGene.GUIGeneState.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.GUIGene.GUIGeneState - + diff --git a/doc/jcgp/gui/population/class-use/GUIGene.html b/doc/jcgp/gui/population/class-use/GUIGene.html index e5196a2..056c43d 100644 --- a/doc/jcgp/gui/population/class-use/GUIGene.html +++ b/doc/jcgp/gui/population/class-use/GUIGene.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.GUIGene - + diff --git a/doc/jcgp/gui/population/class-use/GUIInput.html b/doc/jcgp/gui/population/class-use/GUIInput.html index 94ba5d3..94dc7a6 100644 --- a/doc/jcgp/gui/population/class-use/GUIInput.html +++ b/doc/jcgp/gui/population/class-use/GUIInput.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.GUIInput - + diff --git a/doc/jcgp/gui/population/class-use/GUINode.html b/doc/jcgp/gui/population/class-use/GUINode.html index 3699a25..025b405 100644 --- a/doc/jcgp/gui/population/class-use/GUINode.html +++ b/doc/jcgp/gui/population/class-use/GUINode.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.GUINode - + diff --git a/doc/jcgp/gui/population/class-use/GUIOutput.html b/doc/jcgp/gui/population/class-use/GUIOutput.html index ef18d27..12b420e 100644 --- a/doc/jcgp/gui/population/class-use/GUIOutput.html +++ b/doc/jcgp/gui/population/class-use/GUIOutput.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.GUIOutput - + diff --git a/doc/jcgp/gui/population/class-use/PopulationPane.html b/doc/jcgp/gui/population/class-use/PopulationPane.html index 204f1af..0b51dbd 100644 --- a/doc/jcgp/gui/population/class-use/PopulationPane.html +++ b/doc/jcgp/gui/population/class-use/PopulationPane.html @@ -2,9 +2,9 @@ - + Uses of Class jcgp.gui.population.PopulationPane - + diff --git a/doc/jcgp/gui/population/package-frame.html b/doc/jcgp/gui/population/package-frame.html index 5dd90b4..fb25383 100644 --- a/doc/jcgp/gui/population/package-frame.html +++ b/doc/jcgp/gui/population/package-frame.html @@ -2,9 +2,9 @@ - + jcgp.gui.population - + diff --git a/doc/jcgp/gui/population/package-summary.html b/doc/jcgp/gui/population/package-summary.html index 9dacefb..214d686 100644 --- a/doc/jcgp/gui/population/package-summary.html +++ b/doc/jcgp/gui/population/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.population - + diff --git a/doc/jcgp/gui/population/package-tree.html b/doc/jcgp/gui/population/package-tree.html index 600ec94..0e95523 100644 --- a/doc/jcgp/gui/population/package-tree.html +++ b/doc/jcgp/gui/population/package-tree.html @@ -2,9 +2,9 @@ - + jcgp.gui.population Class Hierarchy - + diff --git a/doc/jcgp/gui/population/package-use.html b/doc/jcgp/gui/population/package-use.html index 84b76e7..b8d73ef 100644 --- a/doc/jcgp/gui/population/package-use.html +++ b/doc/jcgp/gui/population/package-use.html @@ -2,9 +2,9 @@ - + Uses of Package jcgp.gui.population - + diff --git a/doc/jcgp/gui/settings/SettingsPane.html b/doc/jcgp/gui/settings/SettingsPane.html index ad765ec..63f03d4 100644 --- a/doc/jcgp/gui/settings/SettingsPane.html +++ b/doc/jcgp/gui/settings/SettingsPane.html @@ -2,9 +2,9 @@ - + SettingsPane - + diff --git a/doc/jcgp/gui/settings/class-use/SettingsPane.html b/doc/jcgp/gui/settings/class-use/SettingsPane.html index 210a4ff..7232d02 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 048067e..673f613 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 c34a661..8c8abb6 100644 --- a/doc/jcgp/gui/settings/package-summary.html +++ b/doc/jcgp/gui/settings/package-summary.html @@ -2,9 +2,9 @@ - + jcgp.gui.settings - + diff --git a/doc/jcgp/gui/settings/package-tree.html b/doc/jcgp/gui/settings/package-tree.html index 6e0d97e..d7b9375 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 09022a8..d833851 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 - + diff --git a/doc/jcgp/gui/settings/parameters/GUIBooleanParameter.html b/doc/jcgp/gui/settings/parameters/GUIBooleanParameter.html index 3b92cab..31fb114 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 42ad718..da42511 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 8880606..519fc75 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 62e9ffe..82171cb 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 7c50b42..69e9611 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 9c2898b..589b5cf 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 8699e2f..ff5b259 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 def915d..ea3ff57 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 cefb2da..2b9b587 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 4c42757..5af6b96 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 10d1b00..218974a 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 1a4faea..eff0576 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 d8629d7..734ab46 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 96cb1f2..e6a55cf 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 eb8b7fe..783cc21 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 04e97f1..2f080a2 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 a490a72..3ac9b0e 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 961f983..d13c075 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