I have the following code in JAVA: package com.mycompany.test; /**  *  * @author   */ import java.util.ArrayList; import java.util.Scanner; public class Test {          static ArrayList animales = new ArrayList<>();     /**      *      * @param args      */          static void imprimirAnimales() {     for (Animal animal : animales) {         System.out.println("Nombre: " + animal.getNombre() + ", Especie: " + animal.getEspecie() + ", Edad: " + animal.getEdad());     } }               public static void main(String[] args) {                  Scanner scanner = new Scanner(System.in);         int opcion = 0;                  while (opcion != 5) {                          System.out.println("¿Qué acción desea realizar?");             System.out.println("1. Añadir animal");             System.out.println("2. Modificar animal");             System.out.println("3. Eliminar animal");             System.out.println("4. Imprimir lista de animales");             System.out.println("5. Salir");                          opcion = scanner.nextInt();                          switch (opcion) {                 case 1:                     agregarAnimal(scanner);                     break;                 case 2:                     modificarAnimal(scanner);                     break;                 case 3:                     eliminarAnimal(scanner);                     break;                 case 4:                     imprimirAnimales();                     break;                 case 5:                     break;                 default:                     System.out.println("Opción inválida");                     break;             }         }     }          static void agregarAnimal(Scanner scanner) {         System.out.println("Ingrese el nombre del animal:");         String nombre = scanner.next();         System.out.println("Ingrese la especie del animal:");         String especie = scanner.next();         System.out.println("Ingrese la edad del animal:");         int edad = scanner.nextInt();                  Animal animal = new Animal(nombre, especie, edad);         animales.add(animal);                  System.out.println("Animal agregado correctamente.");     }          static void modificarAnimal(Scanner scanner) {         System.out.println("Ingrese el índice del animal a modificar:");         int indice = scanner.nextInt();                  if (indice >= 0 && indice < animales.size()) {             Animal animal = animales.get(indice);             System.out.println("Ingrese el nuevo nombre del animal:");             String nombre = scanner.next();             System.out.println("Ingrese la nueva especie del animal:");             String especie = scanner.next();             System.out.println("Ingrese la nueva edad del animal:");             String edad = scanner.next();                          animal.setNombre(nombre);             animal.setEspecie(especie);             animal.setEdad(Integer.parseInt(edad));                          System.out.println("Animal modificado correctamente.");         } else {             System.out.println("Índice inválido.");         }     }          static void eliminarAnimal(Scanner scanner) {         System.out.println("Ingrese el índice del animal a eliminar:");         int indice = scanner.nextInt();                  if (indice >= 0 && indice < animales.size()) {             animales.remove(indice);             System.out.println("Animal eliminado correctamente.");         } else {             System.out.println("Índice inválido.");         }     } } class Animal {          private String nombre;     private String especie;     private int edad;          public Animal(String nombre, String especie, int edad) {         this.nombre = nombre;         this.especie = especie;         this.edad = edad;     }          public String getNombre() {         return nombre;     }          public void setNombre(String nombre) {         this.nombre = nombre;     }          public String getEspecie() {         return especie;     }          public void setEspecie(String especie){         this.especie = especie;     }          public int getEdad() {         return edad;     }          public void setEdad(int edad) {         this.edad = edad;     } } The code runs perfectly to ask the user if he wants to add, remove or modify an animal. However, I want this code to be called from another class that is located in the same package. How can I do it? The new class must contain an output when it is executed that asks the user if he wants to enter animals, consult data or consult cash counting. If the option is 1, then the above code located in another class is executed

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

I have the following code in JAVA:

package com.mycompany.test;

/**
 *
 * @author 
 */
import java.util.ArrayList;
import java.util.Scanner;


public class Test {
    
    static ArrayList<Animal> animales = new ArrayList<>();

    /**
     *
     * @param args
     */
    
    static void imprimirAnimales() {
    for (Animal animal : animales) {
        System.out.println("Nombre: " + animal.getNombre() + ", Especie: " + animal.getEspecie() + ", Edad: " + animal.getEdad());
    }
}
    
    
    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        int opcion = 0;
        
        while (opcion != 5) {
            
            System.out.println("¿Qué acción desea realizar?");
            System.out.println("1. Añadir animal");
            System.out.println("2. Modificar animal");
            System.out.println("3. Eliminar animal");
            System.out.println("4. Imprimir lista de animales");
            System.out.println("5. Salir");
            
            opcion = scanner.nextInt();
            
            switch (opcion) {
                case 1:
                    agregarAnimal(scanner);
                    break;
                case 2:
                    modificarAnimal(scanner);
                    break;
                case 3:
                    eliminarAnimal(scanner);
                    break;
                case 4:
                    imprimirAnimales();
                    break;
                case 5:
                    break;
                default:
                    System.out.println("Opción inválida");
                    break;
            }
        }
    }
    
    static void agregarAnimal(Scanner scanner) {
        System.out.println("Ingrese el nombre del animal:");
        String nombre = scanner.next();
        System.out.println("Ingrese la especie del animal:");
        String especie = scanner.next();
        System.out.println("Ingrese la edad del animal:");
        int edad = scanner.nextInt();
        
        Animal animal = new Animal(nombre, especie, edad);
        animales.add(animal);
        
        System.out.println("Animal agregado correctamente.");
    }
    
    static void modificarAnimal(Scanner scanner) {
        System.out.println("Ingrese el índice del animal a modificar:");
        int indice = scanner.nextInt();
        
        if (indice >= 0 && indice < animales.size()) {
            Animal animal = animales.get(indice);
            System.out.println("Ingrese el nuevo nombre del animal:");
            String nombre = scanner.next();
            System.out.println("Ingrese la nueva especie del animal:");
            String especie = scanner.next();
            System.out.println("Ingrese la nueva edad del animal:");
            String edad = scanner.next();
            
            animal.setNombre(nombre);
            animal.setEspecie(especie);
            animal.setEdad(Integer.parseInt(edad));
            
            System.out.println("Animal modificado correctamente.");
        } else {
            System.out.println("Índice inválido.");
        }
    }
    
    static void eliminarAnimal(Scanner scanner) {
        System.out.println("Ingrese el índice del animal a eliminar:");
        int indice = scanner.nextInt();
        
        if (indice >= 0 && indice < animales.size()) {
            animales.remove(indice);
            System.out.println("Animal eliminado correctamente.");
        } else {
            System.out.println("Índice inválido.");
        }
    }
}

class Animal {
    
    private String nombre;
    private String especie;
    private int edad;
    
    public Animal(String nombre, String especie, int edad) {
        this.nombre = nombre;
        this.especie = especie;
        this.edad = edad;
    }
    
    public String getNombre() {
        return nombre;
    }
    
    public void setNombre(String nombre) {
        this.nombre = nombre;
    }
    
    public String getEspecie() {
        return especie;
    }
    
    public void setEspecie(String especie){
        this.especie = especie;
    }
    
    public int getEdad() {
        return edad;
    }
    
    public void setEdad(int edad) {
        this.edad = edad;
    }
}

The code runs perfectly to ask the user if he wants to add, remove or modify an animal.

However, I want this code to be called from another class that is located in the same package. How can I do it? The new class must contain an output when it is executed that asks the user if he wants to enter animals, consult data or consult cash counting. If the option is 1, then the above code located in another class is executed

 

Expert Solution
steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Generic Type
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education