diff --git a/README.md b/README.md index 6019f21..59b196f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Añadir otros tipos de conversiones, ejm. temperatura -## Proyecto +### Proyecto - [ ] Releases - [ ] [Conversor](./target/Conversor.jar).jar en desarrollo @@ -46,14 +46,49 @@ Añadir otros tipos de conversiones, ejm. temperatura - [ ] Video - [ ] [Javadocs](https://devfzn.github.io/Desafio_Conversor/overview-tree.html) -### Conversor de Monedas CLI +## Conversor de Monedas CLI - - +[](./media/conv_cli_ayuda.png) +[](./media/conv_cli_ejm.png) -### Conversor de Monedas TUI +## Conversor de Monedas TUI - - +[](./media/conv_tui_menu.png) +[](./media/conv_tui_ejm.png) -### Conversor de monedas GUI +## Conversor de monedas GUI + + + +---- + +#### Requerimientos + +- Jar + - Java JRE 17 o superior +- Source + - Java JDK 17 o superior + - Eclipse IDE 2023-06 (4.28.0) o superior + +#### Instrucciones + +- **Correr applicacion desde el IDE** + + Desde archivo `Conversor.java` del package `cl.conversor.app` + +- **Correr `Conversor.jar`** + + ```sh + # GUI + java -jar Conversor.jar + + # TUI + java -jar Conversor.jar TUI + + # CLI + java -jar Conversor.jar USD EUR 1234.5678 + java -jar Conversor.jar ayuda + ``` diff --git a/docs/allclasses-index.html b/docs/allclasses-index.html index ef63036..0713e82 100644 --- a/docs/allclasses-index.html +++ b/docs/allclasses-index.html @@ -1,11 +1,11 @@ - + All Classes and Interfaces - + @@ -71,21 +71,25 @@ loadScripts(document, 'script');
Main class for CLI converter application
-
ConversorTui
+
ConversorGui
+
Main class for GUI converter application
+
+
ConversorTui
+
Main class for TUI converter application
-
LimpiarConsola
-
+
LimpiarConsola
+
Interface to clear OS terminal screen, on case of IDE Console it just prints 80 new lines.
-
MenuPrincipal
-
+ +
Class to create formatted Strings
- -
+ +
Moneda currency representation `NAME (symbol, rate)`
diff --git a/docs/allpackages-index.html b/docs/allpackages-index.html index 7628726..afa48ed 100644 --- a/docs/allpackages-index.html +++ b/docs/allpackages-index.html @@ -1,11 +1,11 @@ - + All Packages - + @@ -61,8 +61,10 @@ loadScripts(document, 'script');
 
 
- +
 
+ +
 
diff --git a/docs/conversor_alura_one/cl/conversor/app/Conversor.html b/docs/conversor_alura_one/cl/conversor/app/Conversor.html index 7adf2d9..c8f3873 100644 --- a/docs/conversor_alura_one/cl/conversor/app/Conversor.html +++ b/docs/conversor_alura_one/cl/conversor/app/Conversor.html @@ -1,11 +1,11 @@ - + Conversor - + @@ -149,8 +149,8 @@ loadScripts(document, 'script');
Parameters:
args - Optional, to choose the version of the program to run - If first argument it's "TUI" runs TUI application, - if length of arguments it's 3 runs CLI (expect arguments CURRENCY CURRENCY AMOUNT in addition), + If first argument is "TUI" runs TUI application, + if number of arguments is 3 runs CLI (expect arguments CURRENCY CURRENCY AMOUNT in addition), if no arguments are provided runs GUI application.
diff --git a/docs/conversor_alura_one/cl/conversor/app/class-use/Conversor.html b/docs/conversor_alura_one/cl/conversor/app/class-use/Conversor.html index 31e71aa..6cc5d45 100644 --- a/docs/conversor_alura_one/cl/conversor/app/class-use/Conversor.html +++ b/docs/conversor_alura_one/cl/conversor/app/class-use/Conversor.html @@ -1,11 +1,11 @@ - + Uses of Class cl.conversor.app.Conversor - + diff --git a/docs/conversor_alura_one/cl/conversor/app/package-summary.html b/docs/conversor_alura_one/cl/conversor/app/package-summary.html index d9cd871..68e815b 100644 --- a/docs/conversor_alura_one/cl/conversor/app/package-summary.html +++ b/docs/conversor_alura_one/cl/conversor/app/package-summary.html @@ -1,11 +1,11 @@ - + cl.conversor.app - + diff --git a/docs/conversor_alura_one/cl/conversor/app/package-tree.html b/docs/conversor_alura_one/cl/conversor/app/package-tree.html index 7358736..81a1db9 100644 --- a/docs/conversor_alura_one/cl/conversor/app/package-tree.html +++ b/docs/conversor_alura_one/cl/conversor/app/package-tree.html @@ -1,11 +1,11 @@ - + cl.conversor.app Class Hierarchy - + diff --git a/docs/conversor_alura_one/cl/conversor/app/package-use.html b/docs/conversor_alura_one/cl/conversor/app/package-use.html index b337206..1594eeb 100644 --- a/docs/conversor_alura_one/cl/conversor/app/package-use.html +++ b/docs/conversor_alura_one/cl/conversor/app/package-use.html @@ -1,11 +1,11 @@ - + Uses of Package cl.conversor.app - + diff --git a/docs/conversor_alura_one/cl/conversor/moneda/Moneda.html b/docs/conversor_alura_one/cl/conversor/moneda/Moneda.html index ef9003b..52832c8 100644 --- a/docs/conversor_alura_one/cl/conversor/moneda/Moneda.html +++ b/docs/conversor_alura_one/cl/conversor/moneda/Moneda.html @@ -1,11 +1,11 @@ - + Moneda - + @@ -139,25 +139,30 @@ loadScripts(document, 'script');
Converts `monto` to `destino` currency
-
final BigDecimal
-
getBase(BigDecimal monto)
-
-
Converts to base currency (USD) at self.rate
+
static final boolean
+
esMoneda(String value)
+
+
Check if `value` is part of enum Moneda
final BigDecimal
-
rate()
-
 
-
final String
-
symbol()
+
getBase(BigDecimal monto)
+
+
Converts to base currency (USD) at self.rate
+
+
final BigDecimal
+
rate()
 
-
static Moneda
-
valueOf(String name)
-
+
final String
+ +
 
+
static Moneda
+ +
Returns the enum constant of this class with the specified name.
-
static Moneda[]
- -
+
static Moneda[]
+ +
Returns an array containing the constants of this enum class, in the order they are declared.
@@ -304,6 +309,19 @@ not permitted.)
+
  • +
    +

    esMoneda

    +
    public static final boolean esMoneda(String value)
    +
    Check if `value` is part of enum Moneda
    +
    +
    Parameters:
    +
    value - String currency
    +
    Returns:
    +
    true if value is an enum Moneda, otherwise returns false
    +
    +
    +
  • diff --git a/docs/conversor_alura_one/cl/conversor/moneda/class-use/Moneda.html b/docs/conversor_alura_one/cl/conversor/moneda/class-use/Moneda.html index 23856af..dae1ffa 100644 --- a/docs/conversor_alura_one/cl/conversor/moneda/class-use/Moneda.html +++ b/docs/conversor_alura_one/cl/conversor/moneda/class-use/Moneda.html @@ -1,11 +1,11 @@ - + Uses of Enum Class cl.conversor.moneda.Moneda - + diff --git a/docs/conversor_alura_one/cl/conversor/moneda/package-summary.html b/docs/conversor_alura_one/cl/conversor/moneda/package-summary.html index 4196326..2bf0365 100644 --- a/docs/conversor_alura_one/cl/conversor/moneda/package-summary.html +++ b/docs/conversor_alura_one/cl/conversor/moneda/package-summary.html @@ -1,11 +1,11 @@ - + cl.conversor.moneda - + diff --git a/docs/conversor_alura_one/cl/conversor/moneda/package-tree.html b/docs/conversor_alura_one/cl/conversor/moneda/package-tree.html index f669c13..0cbb46a 100644 --- a/docs/conversor_alura_one/cl/conversor/moneda/package-tree.html +++ b/docs/conversor_alura_one/cl/conversor/moneda/package-tree.html @@ -1,11 +1,11 @@ - + cl.conversor.moneda Class Hierarchy - + diff --git a/docs/conversor_alura_one/cl/conversor/moneda/package-use.html b/docs/conversor_alura_one/cl/conversor/moneda/package-use.html index 64193fa..17191d4 100644 --- a/docs/conversor_alura_one/cl/conversor/moneda/package-use.html +++ b/docs/conversor_alura_one/cl/conversor/moneda/package-use.html @@ -1,11 +1,11 @@ - + Uses of Package cl.conversor.moneda - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/cli/ConversorCli.html b/docs/conversor_alura_one/cl/conversor/vista/cli/ConversorCli.html index ecaac2c..5606b07 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/cli/ConversorCli.html +++ b/docs/conversor_alura_one/cl/conversor/vista/cli/ConversorCli.html @@ -1,11 +1,11 @@ - + ConversorCli - + @@ -118,14 +118,9 @@ loadScripts(document, 'script'); Moneda dest, Double monto)
     
    -
    static boolean
    -
    esMoneda(String value)
    +
    static void
    +
    main(String[] args)
    -
    Check if `value` is part of enum Moneda
    -
    -
    static void
    -
    main(String[] args)
    -
    Main CLI application
    @@ -187,19 +182,6 @@ loadScripts(document, 'script');
  • -
    -

    esMoneda

    -
    public static boolean esMoneda(String value)
    -
    Check if `value` is part of enum Moneda
    -
    -
    Parameters:
    -
    value - String currency
    -
    Returns:
    -
    true if value is an enum Moneda, otherwise returns false
    -
    -
    -
  • -
  • ayuda

    public static void ayuda()
    diff --git a/docs/conversor_alura_one/cl/conversor/vista/cli/class-use/ConversorCli.html b/docs/conversor_alura_one/cl/conversor/vista/cli/class-use/ConversorCli.html index 8631533..bd295db 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/cli/class-use/ConversorCli.html +++ b/docs/conversor_alura_one/cl/conversor/vista/cli/class-use/ConversorCli.html @@ -1,11 +1,11 @@ - + Uses of Class cl.conversor.vista.cli.ConversorCli - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/cli/package-summary.html b/docs/conversor_alura_one/cl/conversor/vista/cli/package-summary.html index d43e701..5e8c5a1 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/cli/package-summary.html +++ b/docs/conversor_alura_one/cl/conversor/vista/cli/package-summary.html @@ -1,11 +1,11 @@ - + cl.conversor.vista.cli - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/cli/package-tree.html b/docs/conversor_alura_one/cl/conversor/vista/cli/package-tree.html index ecc4bb6..95f2498 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/cli/package-tree.html +++ b/docs/conversor_alura_one/cl/conversor/vista/cli/package-tree.html @@ -1,11 +1,11 @@ - + cl.conversor.vista.cli Class Hierarchy - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/cli/package-use.html b/docs/conversor_alura_one/cl/conversor/vista/cli/package-use.html index 898f2a1..8b1919b 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/cli/package-use.html +++ b/docs/conversor_alura_one/cl/conversor/vista/cli/package-use.html @@ -1,11 +1,11 @@ - + Uses of Package cl.conversor.vista.cli - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/gui/ConversorGui.html b/docs/conversor_alura_one/cl/conversor/vista/gui/ConversorGui.html new file mode 100644 index 0000000..d4cd83b --- /dev/null +++ b/docs/conversor_alura_one/cl/conversor/vista/gui/ConversorGui.html @@ -0,0 +1,244 @@ + + + + +ConversorGui + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + + +

    Class ConversorGui

    +
    + +
    +
    +
    All Implemented Interfaces:
    +
    ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer, WindowConstants
    +
    +
    +
    public class ConversorGui +extends JFrame
    +
    Main class for GUI converter application
    +
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        ConversorGui

        +
        public ConversorGui()
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • + +
      • +
      • +
        +

        main

        +
        public static void main(String[] args)
        +
        +
        Parameters:
        +
        args - Not used
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/docs/conversor_alura_one/cl/conversor/vista/gui/class-use/ConversorGui.html b/docs/conversor_alura_one/cl/conversor/vista/gui/class-use/ConversorGui.html new file mode 100644 index 0000000..3335e8f --- /dev/null +++ b/docs/conversor_alura_one/cl/conversor/vista/gui/class-use/ConversorGui.html @@ -0,0 +1,58 @@ + + + + +Uses of Class cl.conversor.vista.gui.ConversorGui + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    cl.conversor.vista.gui.ConversorGui

    +
    +No usage of cl.conversor.vista.gui.ConversorGui
    +
    +
    + + diff --git a/docs/conversor_alura_one/cl/conversor/vista/gui/package-summary.html b/docs/conversor_alura_one/cl/conversor/vista/gui/package-summary.html new file mode 100644 index 0000000..fbc7221 --- /dev/null +++ b/docs/conversor_alura_one/cl/conversor/vista/gui/package-summary.html @@ -0,0 +1,86 @@ + + + + +cl.conversor.vista.gui + + + + + + + + + + + + + + + +
    + +
    +
    +
    + +

    Package cl.conversor.vista.gui

    +
    +
    +
    package cl.conversor.vista.gui
    +
    +
      +
    • +
      +
      Classes
      +
      +
      Class
      +
      Description
      + +
      +
      Main class for GUI converter application
      +
      +
      +
      +
    • +
    +
    +
    +
    +
    + + diff --git a/docs/conversor_alura_one/cl/conversor/vista/gui/package-tree.html b/docs/conversor_alura_one/cl/conversor/vista/gui/package-tree.html new file mode 100644 index 0000000..27b0c85 --- /dev/null +++ b/docs/conversor_alura_one/cl/conversor/vista/gui/package-tree.html @@ -0,0 +1,92 @@ + + + + +cl.conversor.vista.gui Class Hierarchy + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package cl.conversor.vista.gui

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    + +
    +
    +
    +
    + + diff --git a/docs/conversor_alura_one/cl/conversor/vista/gui/package-use.html b/docs/conversor_alura_one/cl/conversor/vista/gui/package-use.html new file mode 100644 index 0000000..07b7c2a --- /dev/null +++ b/docs/conversor_alura_one/cl/conversor/vista/gui/package-use.html @@ -0,0 +1,58 @@ + + + + +Uses of Package cl.conversor.vista.gui + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Package
    cl.conversor.vista.gui

    +
    +No usage of cl.conversor.vista.gui
    +
    +
    + + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/Color.html b/docs/conversor_alura_one/cl/conversor/vista/tui/Color.html index 13238fc..f6a4f88 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/Color.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/Color.html @@ -1,11 +1,11 @@ - + Color - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/ConversorTui.html b/docs/conversor_alura_one/cl/conversor/vista/tui/ConversorTui.html index f6688c4..f99df3b 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/ConversorTui.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/ConversorTui.html @@ -1,11 +1,11 @@ - + ConversorTui - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/LimpiarConsola.html b/docs/conversor_alura_one/cl/conversor/vista/tui/LimpiarConsola.html index e4b97fb..81da281 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/LimpiarConsola.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/LimpiarConsola.html @@ -1,11 +1,11 @@ - + LimpiarConsola - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/MenuPrincipal.html b/docs/conversor_alura_one/cl/conversor/vista/tui/MenuPrincipal.html index 478a26d..c8a796e 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/MenuPrincipal.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/MenuPrincipal.html @@ -1,11 +1,11 @@ - + MenuPrincipal - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/Color.html b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/Color.html index add0f59..d7826ad 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/Color.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/Color.html @@ -1,11 +1,11 @@ - + Uses of Enum Class cl.conversor.vista.tui.Color - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/ConversorTui.html b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/ConversorTui.html index 3994d83..735da72 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/ConversorTui.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/ConversorTui.html @@ -1,11 +1,11 @@ - + Uses of Class cl.conversor.vista.tui.ConversorTui - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/LimpiarConsola.html b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/LimpiarConsola.html index 651823d..6eb52c3 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/LimpiarConsola.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/LimpiarConsola.html @@ -1,11 +1,11 @@ - + Uses of Interface cl.conversor.vista.tui.LimpiarConsola - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/MenuPrincipal.html b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/MenuPrincipal.html index 2e1d576..9833ea3 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/MenuPrincipal.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/class-use/MenuPrincipal.html @@ -1,11 +1,11 @@ - + Uses of Class cl.conversor.vista.tui.MenuPrincipal - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/package-summary.html b/docs/conversor_alura_one/cl/conversor/vista/tui/package-summary.html index e0d7cfb..e7d1e99 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/package-summary.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/package-summary.html @@ -1,11 +1,11 @@ - + cl.conversor.vista.tui - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/package-tree.html b/docs/conversor_alura_one/cl/conversor/vista/tui/package-tree.html index 9476c1a..8571632 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/package-tree.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/package-tree.html @@ -1,11 +1,11 @@ - + cl.conversor.vista.tui Class Hierarchy - + diff --git a/docs/conversor_alura_one/cl/conversor/vista/tui/package-use.html b/docs/conversor_alura_one/cl/conversor/vista/tui/package-use.html index 9d49eb7..b0150e7 100644 --- a/docs/conversor_alura_one/cl/conversor/vista/tui/package-use.html +++ b/docs/conversor_alura_one/cl/conversor/vista/tui/package-use.html @@ -1,11 +1,11 @@ - + Uses of Package cl.conversor.vista.tui - + diff --git a/docs/conversor_alura_one/module-summary.html b/docs/conversor_alura_one/module-summary.html index 046f884..8ba5ebb 100644 --- a/docs/conversor_alura_one/module-summary.html +++ b/docs/conversor_alura_one/module-summary.html @@ -1,11 +1,11 @@ - + conversor_alura_one - + diff --git a/docs/element-list b/docs/element-list index ab77107..f59a947 100644 --- a/docs/element-list +++ b/docs/element-list @@ -2,4 +2,5 @@ module:conversor_alura_one cl.conversor.app cl.conversor.moneda cl.conversor.vista.cli +cl.conversor.vista.gui cl.conversor.vista.tui diff --git a/docs/help-doc.html b/docs/help-doc.html index 174f7a4..138c8ab 100644 --- a/docs/help-doc.html +++ b/docs/help-doc.html @@ -1,11 +1,11 @@ - + API Help - + @@ -70,6 +70,7 @@ loadScripts(document, 'script');
  • Other Files
  • Use
  • Tree (Class Hierarchy)
  • +
  • Serialized Form
  • All Packages
  • All Classes and Interfaces
  • Index
  • @@ -166,6 +167,10 @@ The following sections describe the different kinds of pages in this collection.
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
    +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

    +

    All Packages

    The All Packages page contains an alphabetic index of all packages contained in the documentation.

    diff --git a/docs/index-files/index-1.html b/docs/index-files/index-1.html index 9a5142f..e75b629 100644 --- a/docs/index-files/index-1.html +++ b/docs/index-files/index-1.html @@ -1,11 +1,11 @@ - + A-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    A

    ayuda() - Static method in class cl.conversor.vista.cli.ConversorCli
    @@ -59,7 +59,7 @@ loadScripts(document, 'script');
    Help and usage menu
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-10.html b/docs/index-files/index-10.html index 7211e1c..191f963 100644 --- a/docs/index-files/index-10.html +++ b/docs/index-files/index-10.html @@ -1,11 +1,11 @@ - + P-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    P

    PURPLE - Enum constant in enum class cl.conversor.vista.tui.Color
    @@ -59,7 +59,7 @@ loadScripts(document, 'script');
    PURPLE_BCG - Enum constant in enum class cl.conversor.vista.tui.Color
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-11.html b/docs/index-files/index-11.html index e604cc4..c2d6ea6 100644 --- a/docs/index-files/index-11.html +++ b/docs/index-files/index-11.html @@ -1,11 +1,11 @@ - + R-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    R

    rate() - Method in enum class cl.conversor.moneda.Moneda
    @@ -65,7 +65,7 @@ loadScripts(document, 'script');
    resultado(String...) - Method in class cl.conversor.vista.tui.MenuPrincipal
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-12.html b/docs/index-files/index-12.html index 9fa0916..c269abf 100644 --- a/docs/index-files/index-12.html +++ b/docs/index-files/index-12.html @@ -1,11 +1,11 @@ - + S-Index - + @@ -51,13 +51,13 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    S

    symbol() - Method in enum class cl.conversor.moneda.Moneda
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-13.html b/docs/index-files/index-13.html index d3416fd..1491a54 100644 --- a/docs/index-files/index-13.html +++ b/docs/index-files/index-13.html @@ -1,11 +1,11 @@ - + T-Index - + @@ -51,13 +51,13 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    T

    titulo - Variable in class cl.conversor.vista.tui.MenuPrincipal
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-14.html b/docs/index-files/index-14.html index 3005d5e..376e745 100644 --- a/docs/index-files/index-14.html +++ b/docs/index-files/index-14.html @@ -1,11 +1,11 @@ - + U-Index - + @@ -51,13 +51,13 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    U

    USD - Enum constant in enum class cl.conversor.moneda.Moneda
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-15.html b/docs/index-files/index-15.html index a3b2f02..c7e517b 100644 --- a/docs/index-files/index-15.html +++ b/docs/index-files/index-15.html @@ -1,11 +1,11 @@ - + V-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    V

    valueOf(String) - Static method in enum class cl.conversor.moneda.Moneda
    @@ -73,7 +73,7 @@ the order they are declared. the order they are declared.
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-16.html b/docs/index-files/index-16.html index bb7b54d..08d4049 100644 --- a/docs/index-files/index-16.html +++ b/docs/index-files/index-16.html @@ -1,11 +1,11 @@ - + W-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    W

    WHITE - Enum constant in enum class cl.conversor.vista.tui.Color
    @@ -59,7 +59,7 @@ loadScripts(document, 'script');
    WHITE_BKG - Enum constant in enum class cl.conversor.vista.tui.Color
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-17.html b/docs/index-files/index-17.html index 6768139..3b71da6 100644 --- a/docs/index-files/index-17.html +++ b/docs/index-files/index-17.html @@ -1,11 +1,11 @@ - + Y-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    Y

    YELLOW - Enum constant in enum class cl.conversor.vista.tui.Color
    @@ -59,7 +59,7 @@ loadScripts(document, 'script');
    YELLOW_BKG - Enum constant in enum class cl.conversor.vista.tui.Color
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-2.html b/docs/index-files/index-2.html index bc053d3..d78c00b 100644 --- a/docs/index-files/index-2.html +++ b/docs/index-files/index-2.html @@ -1,11 +1,11 @@ - + B-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    B

    baner() - Method in class cl.conversor.vista.tui.MenuPrincipal
    @@ -67,7 +67,7 @@ loadScripts(document, 'script');
    BLUE_BKG - Enum constant in enum class cl.conversor.vista.tui.Color
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-3.html b/docs/index-files/index-3.html index 51eb54f..185081e 100644 --- a/docs/index-files/index-3.html +++ b/docs/index-files/index-3.html @@ -1,11 +1,11 @@ - + C-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    C

    cl.conversor.app - package cl.conversor.app
    @@ -60,6 +60,8 @@ loadScripts(document, 'script');
     
    cl.conversor.vista.cli - package cl.conversor.vista.cli
     
    +
    cl.conversor.vista.gui - package cl.conversor.vista.gui
    +
     
    cl.conversor.vista.tui - package cl.conversor.vista.tui
     
    clear() - Static method in interface cl.conversor.vista.tui.LimpiarConsola
    @@ -90,6 +92,12 @@ loadScripts(document, 'script');
    ConversorCli() - Constructor for class cl.conversor.vista.cli.ConversorCli
     
    +
    ConversorGui - Class in cl.conversor.vista.gui
    +
    +
    Main class for GUI converter application
    +
    +
    ConversorGui() - Constructor for class cl.conversor.vista.gui.ConversorGui
    +
     
    ConversorTui - Class in cl.conversor.vista.tui
    Main class for TUI converter application
    @@ -105,7 +113,7 @@ loadScripts(document, 'script');
    CYAN_BKG - Enum constant in enum class cl.conversor.vista.tui.Color
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-4.html b/docs/index-files/index-4.html index aa2e108..94edfbc 100644 --- a/docs/index-files/index-4.html +++ b/docs/index-files/index-4.html @@ -1,11 +1,11 @@ - + E-Index - + @@ -51,19 +51,19 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    E

    error_in() - Method in class cl.conversor.vista.tui.MenuPrincipal
     
    -
    esMoneda(String) - Static method in class cl.conversor.vista.cli.ConversorCli
    +
    esMoneda(String) - Static method in enum class cl.conversor.moneda.Moneda
    Check if `value` is part of enum Moneda
    EUR - Enum constant in enum class cl.conversor.moneda.Moneda
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-5.html b/docs/index-files/index-5.html index 1032ed7..d3ad9c3 100644 --- a/docs/index-files/index-5.html +++ b/docs/index-files/index-5.html @@ -1,11 +1,11 @@ - + G-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    G

    GBP - Enum constant in enum class cl.conversor.moneda.Moneda
    @@ -65,7 +65,7 @@ loadScripts(document, 'script');
    GREEN_BKG - Enum constant in enum class cl.conversor.vista.tui.Color
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-6.html b/docs/index-files/index-6.html index 851a9f3..3cda52f 100644 --- a/docs/index-files/index-6.html +++ b/docs/index-files/index-6.html @@ -1,11 +1,11 @@ - + J-Index - + @@ -51,13 +51,13 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    J

    JPY - Enum constant in enum class cl.conversor.moneda.Moneda
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-7.html b/docs/index-files/index-7.html index b8229de..7f1c854 100644 --- a/docs/index-files/index-7.html +++ b/docs/index-files/index-7.html @@ -1,11 +1,11 @@ - + K-Index - + @@ -51,13 +51,13 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    K

    KRW - Enum constant in enum class cl.conversor.moneda.Moneda
     
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-8.html b/docs/index-files/index-8.html index ff504d8..2146592 100644 --- a/docs/index-files/index-8.html +++ b/docs/index-files/index-8.html @@ -1,11 +1,11 @@ - + L-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    L

    LimpiarConsola - Interface in cl.conversor.vista.tui
    @@ -60,7 +60,7 @@ loadScripts(document, 'script'); it just prints 80 new lines.
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index-files/index-9.html b/docs/index-files/index-9.html index 9646b44..0648888 100644 --- a/docs/index-files/index-9.html +++ b/docs/index-files/index-9.html @@ -1,11 +1,11 @@ - + M-Index - + @@ -51,7 +51,7 @@ loadScripts(document, 'script');

    Index

    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form

    M

    main(String[]) - Static method in class cl.conversor.app.Conversor
    @@ -60,6 +60,8 @@ loadScripts(document, 'script');
    Main CLI application
    +
    main(String[]) - Static method in class cl.conversor.vista.gui.ConversorGui
    +
     
    main(String[]) - Static method in class cl.conversor.vista.tui.ConversorTui
    Main TUI application
    @@ -68,6 +70,8 @@ loadScripts(document, 'script');
     
    menu_opcs() - Method in class cl.conversor.vista.tui.MenuPrincipal
     
    +
    menuConversion() - Method in class cl.conversor.vista.gui.ConversorGui
    +
     
    MenuPrincipal - Class in cl.conversor.vista.tui
    Class to create formatted Strings
    @@ -79,7 +83,7 @@ loadScripts(document, 'script');
    Moneda currency representation `NAME (symbol, rate)`
    -A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages +A B C E G J K L M P R S T U V W Y 
    All Classes and Interfaces|All Packages|Serialized Form diff --git a/docs/index.html b/docs/index.html index 016da27..895f7d9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,11 +1,11 @@ - + Generated Documentation (Untitled) - + diff --git a/docs/member-search-index.js b/docs/member-search-index.js index e7f06aa..135556d 100644 --- a/docs/member-search-index.js +++ b/docs/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"ayuda()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"baner()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"baner(String)","u":"baner(java.lang.String)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLACK"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLACK_BKG"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLUE"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLUE_BKG"},{"p":"cl.conversor.vista.tui","c":"LimpiarConsola","l":"clear()"},{"p":"cl.conversor.moneda","c":"Moneda","l":"CLP"},{"p":"cl.conversor.vista.tui","c":"Color","l":"code()"},{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"conversion(Moneda, Moneda, Double)","u":"conversion(cl.conversor.moneda.Moneda,cl.conversor.moneda.Moneda,java.lang.Double)"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"conversion(Moneda, Moneda, Double)","u":"conversion(cl.conversor.moneda.Moneda,cl.conversor.moneda.Moneda,java.lang.Double)"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"conversion(Moneda, Moneda, String)","u":"conversion(cl.conversor.moneda.Moneda,cl.conversor.moneda.Moneda,java.lang.String)"},{"p":"cl.conversor.app","c":"Conversor","l":"Conversor()","u":"%3Cinit%3E()"},{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"ConversorCli()","u":"%3Cinit%3E()"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"ConversorTui()","u":"%3Cinit%3E()"},{"p":"cl.conversor.moneda","c":"Moneda","l":"convert(Moneda, Double)","u":"convert(cl.conversor.moneda.Moneda,java.lang.Double)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"CYAN"},{"p":"cl.conversor.vista.tui","c":"Color","l":"CYAN_BKG"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"error_in()"},{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"esMoneda(String)","u":"esMoneda(java.lang.String)"},{"p":"cl.conversor.moneda","c":"Moneda","l":"EUR"},{"p":"cl.conversor.moneda","c":"Moneda","l":"GBP"},{"p":"cl.conversor.moneda","c":"Moneda","l":"getBase(BigDecimal)","u":"getBase(java.math.BigDecimal)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"GREEN"},{"p":"cl.conversor.vista.tui","c":"Color","l":"GREEN_BKG"},{"p":"cl.conversor.moneda","c":"Moneda","l":"JPY"},{"p":"cl.conversor.moneda","c":"Moneda","l":"KRW"},{"p":"cl.conversor.app","c":"Conversor","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"menu"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"menu_opcs()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"MenuPrincipal(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"PURPLE"},{"p":"cl.conversor.vista.tui","c":"Color","l":"PURPLE_BCG"},{"p":"cl.conversor.moneda","c":"Moneda","l":"rate()"},{"p":"cl.conversor.vista.tui","c":"Color","l":"RED"},{"p":"cl.conversor.vista.tui","c":"Color","l":"RED_BKG"},{"p":"cl.conversor.vista.tui","c":"Color","l":"RESET"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"resultado(String...)","u":"resultado(java.lang.String...)"},{"p":"cl.conversor.moneda","c":"Moneda","l":"symbol()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"titulo"},{"p":"cl.conversor.moneda","c":"Moneda","l":"USD"},{"p":"cl.conversor.moneda","c":"Moneda","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"cl.conversor.moneda","c":"Moneda","l":"values()"},{"p":"cl.conversor.vista.tui","c":"Color","l":"values()"},{"p":"cl.conversor.vista.tui","c":"Color","l":"WHITE"},{"p":"cl.conversor.vista.tui","c":"Color","l":"WHITE_BKG"},{"p":"cl.conversor.vista.tui","c":"Color","l":"YELLOW"},{"p":"cl.conversor.vista.tui","c":"Color","l":"YELLOW_BKG"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"ayuda()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"baner()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"baner(String)","u":"baner(java.lang.String)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLACK"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLACK_BKG"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLUE"},{"p":"cl.conversor.vista.tui","c":"Color","l":"BLUE_BKG"},{"p":"cl.conversor.vista.tui","c":"LimpiarConsola","l":"clear()"},{"p":"cl.conversor.moneda","c":"Moneda","l":"CLP"},{"p":"cl.conversor.vista.tui","c":"Color","l":"code()"},{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"conversion(Moneda, Moneda, Double)","u":"conversion(cl.conversor.moneda.Moneda,cl.conversor.moneda.Moneda,java.lang.Double)"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"conversion(Moneda, Moneda, Double)","u":"conversion(cl.conversor.moneda.Moneda,cl.conversor.moneda.Moneda,java.lang.Double)"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"conversion(Moneda, Moneda, String)","u":"conversion(cl.conversor.moneda.Moneda,cl.conversor.moneda.Moneda,java.lang.String)"},{"p":"cl.conversor.app","c":"Conversor","l":"Conversor()","u":"%3Cinit%3E()"},{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"ConversorCli()","u":"%3Cinit%3E()"},{"p":"cl.conversor.vista.gui","c":"ConversorGui","l":"ConversorGui()","u":"%3Cinit%3E()"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"ConversorTui()","u":"%3Cinit%3E()"},{"p":"cl.conversor.moneda","c":"Moneda","l":"convert(Moneda, Double)","u":"convert(cl.conversor.moneda.Moneda,java.lang.Double)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"CYAN"},{"p":"cl.conversor.vista.tui","c":"Color","l":"CYAN_BKG"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"error_in()"},{"p":"cl.conversor.moneda","c":"Moneda","l":"esMoneda(String)","u":"esMoneda(java.lang.String)"},{"p":"cl.conversor.moneda","c":"Moneda","l":"EUR"},{"p":"cl.conversor.moneda","c":"Moneda","l":"GBP"},{"p":"cl.conversor.moneda","c":"Moneda","l":"getBase(BigDecimal)","u":"getBase(java.math.BigDecimal)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"GREEN"},{"p":"cl.conversor.vista.tui","c":"Color","l":"GREEN_BKG"},{"p":"cl.conversor.moneda","c":"Moneda","l":"JPY"},{"p":"cl.conversor.moneda","c":"Moneda","l":"KRW"},{"p":"cl.conversor.app","c":"Conversor","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"cl.conversor.vista.cli","c":"ConversorCli","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"cl.conversor.vista.gui","c":"ConversorGui","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"cl.conversor.vista.tui","c":"ConversorTui","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"menu"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"menu_opcs()"},{"p":"cl.conversor.vista.gui","c":"ConversorGui","l":"menuConversion()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"MenuPrincipal(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"PURPLE"},{"p":"cl.conversor.vista.tui","c":"Color","l":"PURPLE_BCG"},{"p":"cl.conversor.moneda","c":"Moneda","l":"rate()"},{"p":"cl.conversor.vista.tui","c":"Color","l":"RED"},{"p":"cl.conversor.vista.tui","c":"Color","l":"RED_BKG"},{"p":"cl.conversor.vista.tui","c":"Color","l":"RESET"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"resultado(String...)","u":"resultado(java.lang.String...)"},{"p":"cl.conversor.moneda","c":"Moneda","l":"symbol()"},{"p":"cl.conversor.vista.tui","c":"MenuPrincipal","l":"titulo"},{"p":"cl.conversor.moneda","c":"Moneda","l":"USD"},{"p":"cl.conversor.moneda","c":"Moneda","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"cl.conversor.vista.tui","c":"Color","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"cl.conversor.moneda","c":"Moneda","l":"values()"},{"p":"cl.conversor.vista.tui","c":"Color","l":"values()"},{"p":"cl.conversor.vista.tui","c":"Color","l":"WHITE"},{"p":"cl.conversor.vista.tui","c":"Color","l":"WHITE_BKG"},{"p":"cl.conversor.vista.tui","c":"Color","l":"YELLOW"},{"p":"cl.conversor.vista.tui","c":"Color","l":"YELLOW_BKG"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/overview-tree.html b/docs/overview-tree.html index 0c8cf2e..3c67f8f 100644 --- a/docs/overview-tree.html +++ b/docs/overview-tree.html @@ -1,11 +1,11 @@ - + Class Hierarchy - + @@ -55,6 +55,7 @@ loadScripts(document, 'script');
  • cl.conversor.app,
  • cl.conversor.moneda,
  • cl.conversor.vista.cli,
  • +
  • cl.conversor.vista.gui,
  • cl.conversor.vista.tui
  • @@ -63,6 +64,27 @@ loadScripts(document, 'script');