From e89d581b0a4184d46f4564700465b06321596d4a Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 25 Jun 2016 11:10:54 -0400 Subject: [PATCH] Added missing doc files. --- .../estructuras/Array.ParticionarResult.html | 367 +++++++++++++ .../cromer/estructuras/QuickController.html | 491 ++++++++++++++++++ .../class-use/Array.ParticionarResult.html | 150 ++++++ .../class-use/QuickController.html | 123 +++++ doc/index-files/index-17.html | 140 +++++ 5 files changed, 1271 insertions(+) create mode 100644 doc/cl/cromer/estructuras/Array.ParticionarResult.html create mode 100644 doc/cl/cromer/estructuras/QuickController.html create mode 100644 doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html create mode 100644 doc/cl/cromer/estructuras/class-use/QuickController.html create mode 100644 doc/index-files/index-17.html diff --git a/doc/cl/cromer/estructuras/Array.ParticionarResult.html b/doc/cl/cromer/estructuras/Array.ParticionarResult.html new file mode 100644 index 0000000..9ee5e9d --- /dev/null +++ b/doc/cl/cromer/estructuras/Array.ParticionarResult.html @@ -0,0 +1,367 @@ + + + + + + +Array.ParticionarResult + + + + + + + + +
+ + + + + + + +
+ + + +
+
cl.cromer.estructuras
+

Class Array.ParticionarResult

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    Array
    +
    +
    +
    +
    public final class Array.ParticionarResult
    +extends java.lang.Object
    +
    Esta clase contiene los resultados de Partricionar.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      private booleancambio +
      Si habia algun cambio.
      +
      private intpunteroIzquerda +
      La parte izquerda que cambió.
      +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ParticionarResult(boolean cambio, + int punteroIzquerda) +
      Inicializar.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      booleangetCambio() +
      Devolver el cambio.
      +
      intgetPunteroIzquerda() +
      Devolver el puntero izquerda.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        cambio

        +
        private boolean cambio
        +
        Si habia algun cambio.
        +
      • +
      + + + +
        +
      • +

        punteroIzquerda

        +
        private int punteroIzquerda
        +
        La parte izquerda que cambió.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ParticionarResult

        +
        public ParticionarResult(boolean cambio,
        +                         int punteroIzquerda)
        +
        Inicializar.
        +
        +
        Parameters:
        +
        cambio - boolean: Si habia un cambio o no.
        +
        punteroIzquerda: - El valor desde la izquerda donde fue un cambio.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getCambio

        +
        public boolean getCambio()
        +
        Devolver el cambio.
        +
        +
        Returns:
        +
        boolean: Devolver el valor de cambio.
        +
        +
      • +
      + + + +
        +
      • +

        getPunteroIzquerda

        +
        public int getPunteroIzquerda()
        +
        Devolver el puntero izquerda.
        +
        +
        Returns:
        +
        int: Devolver el valor de puntero.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/doc/cl/cromer/estructuras/QuickController.html b/doc/cl/cromer/estructuras/QuickController.html new file mode 100644 index 0000000..7f6e521 --- /dev/null +++ b/doc/cl/cromer/estructuras/QuickController.html @@ -0,0 +1,491 @@ + + + + + + +QuickController + + + + + + + + +
+ + + + + + + +
+ + + +
+
cl.cromer.estructuras
+

Class QuickController

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    javafx.fxml.Initializable
    +
    +
    +
    +
    public class QuickController
    +extends java.lang.Object
    +implements javafx.fxml.Initializable
    +
    Esta clase es para controlar todos la interfaz de Quick.
    +
    +
    Author:
    +
    Chris Cromer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      private Arrayarray +
      El array usado en la aplicación.
      +
      private javafx.scene.text.TextcodigoQuick +
      Donde va el codigo a mostrar a la pantalla.
      +
      private javafx.scene.layout.HBoxcontenidoQuick +
      Donde poner el contenido de array.
      +
      private java.util.ResourceBundleresourceBundle +
      Donde está guardado los idiomas.
      +
      private javafx.scene.Scenescene +
      La escena donde está cosas graficas.
      +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      QuickController() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      protected voidbotonCorrer() +
      Ordenarlo completamente.
      +
      protected voidbotonNuevo() +
      Crear un array nuevo.
      +
      protected voidbotonPaso() +
      Ordenarlo paso por paso.
      +
      private voiderrorYaOrdenado() +
      Se muestra un error si el array ya está ordenado.
      +
      private voidgenerarGrafico() +
      Poner los valores en el grafico.
      +
      voidinitialize(java.net.URL location, + java.util.ResourceBundle resourceBundle) +
      Inicializar todos los datos y dibujar las graficas.
      +
      private voidinitializeScene() +
      Crear el array de temaño 10.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        contenidoQuick

        +
        private javafx.scene.layout.HBox contenidoQuick
        +
        Donde poner el contenido de array.
        +
      • +
      + + + +
        +
      • +

        codigoQuick

        +
        private javafx.scene.text.Text codigoQuick
        +
        Donde va el codigo a mostrar a la pantalla.
        +
      • +
      + + + +
        +
      • +

        scene

        +
        private javafx.scene.Scene scene
        +
        La escena donde está cosas graficas.
        +
      • +
      + + + +
        +
      • +

        resourceBundle

        +
        private java.util.ResourceBundle resourceBundle
        +
        Donde está guardado los idiomas.
        +
      • +
      + + + +
        +
      • +

        array

        +
        private Array array
        +
        El array usado en la aplicación.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        QuickController

        +
        public QuickController()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        initialize

        +
        public void initialize(java.net.URL location,
        +                       java.util.ResourceBundle resourceBundle)
        +
        Inicializar todos los datos y dibujar las graficas.
        +
        +
        Specified by:
        +
        initialize in interface javafx.fxml.Initializable
        +
        Parameters:
        +
        location - URL: El URL de fxml en uso.
        +
        resourceBundle - ResourceBundle: Tiene datos de idioma.
        +
        +
      • +
      + + + +
        +
      • +

        botonNuevo

        +
        protected void botonNuevo()
        +
        Crear un array nuevo.
        +
      • +
      + + + +
        +
      • +

        botonPaso

        +
        protected void botonPaso()
        +
        Ordenarlo paso por paso.
        +
      • +
      + + + +
        +
      • +

        botonCorrer

        +
        protected void botonCorrer()
        +
        Ordenarlo completamente.
        +
      • +
      + + + +
        +
      • +

        errorYaOrdenado

        +
        private void errorYaOrdenado()
        +
        Se muestra un error si el array ya está ordenado.
        +
      • +
      + + + +
        +
      • +

        initializeScene

        +
        private void initializeScene()
        +
        Crear el array de temaño 10.
        +
      • +
      + + + +
        +
      • +

        generarGrafico

        +
        private void generarGrafico()
        +
        Poner los valores en el grafico.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html b/doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html new file mode 100644 index 0000000..21507b2 --- /dev/null +++ b/doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html @@ -0,0 +1,150 @@ + + + + + + +Uses of Class cl.cromer.estructuras.Array.ParticionarResult + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
cl.cromer.estructuras.Array.ParticionarResult

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/doc/cl/cromer/estructuras/class-use/QuickController.html b/doc/cl/cromer/estructuras/class-use/QuickController.html new file mode 100644 index 0000000..5797020 --- /dev/null +++ b/doc/cl/cromer/estructuras/class-use/QuickController.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class cl.cromer.estructuras.QuickController + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
cl.cromer.estructuras.QuickController

+
+
No usage of cl.cromer.estructuras.QuickController
+ +
+ + + + + + + +
+ + + + diff --git a/doc/index-files/index-17.html b/doc/index-files/index-17.html new file mode 100644 index 0000000..61baa15 --- /dev/null +++ b/doc/index-files/index-17.html @@ -0,0 +1,140 @@ + + + + + + +V-Index + + + + + + + + +
+ + + + + + + +
+ + +
A B C D E F G I L M O P Q R S T V  + + +

V

+
+
valor - Variable in class cl.cromer.estructuras.ListaEnlazada.Enlace
+
 
+
valorArray - Variable in class cl.cromer.estructuras.ArrayController
+
+
La caja para ingresar textos.
+
+
valorCola - Variable in class cl.cromer.estructuras.ColaController
+
+
La caja para ingresar textos.
+
+
valorPila - Variable in class cl.cromer.estructuras.PilaController
+
+
La caja para ingresar textos.
+
+
+A B C D E F G I L M O P Q R S T V 
+ +
+ + + + + + + +
+ + + +