Hi,
I am creating a program that when you print an author, you must show all the information of all the books that the author has written. Add a new attribute in the Author class that will be "BooksWriting: List (Book)".
I have expanded the program so that it also stores the created authors (the books will be stored by each created author), so that the program can be given the possibility to list all the books of authors that have a gender (sex) determined and that are not worth More than a certain price.
(The name of the variables is in Spanish, sorry)
public class Libro {
private final String nombreLibro;
private final double precioLibro;
private final int cantidadEnStock;
private final Autor[] autores;
private final String librosEscritos;
public Libro(String nombreLibro, double precioLibro, int cantidadEnStock, Autor[] autores, String librosEscritos) {
this.nombreLibro = nombreLibro;
this.precioLibro = precioLibro;
this.cantidadEnStock = cantidadEnStock;
this.autores = autores;
this.librosEscritos = librosEscritos;
}
//Metodos get y set
public String getNombre() {
return nombreLibro;
}
public String getNombreLibro() {
return nombreLibro;
}
public double getPrecioLibro() {
return precioLibro;
}
public int getCantidadEnStock() {
return cantidadEnStock;
}
public Autor[] getAutores() {
return autores;
}
public String getLibrosEscritos() {
return librosEscritos;
}
public String setLibrosEscritos() {
return librosEscritos;
}
public Autor[] setAutores() {
return autores;
}
public String setNombre() {
return nombreLibro;
}
public double setPrecioLibro() {
return precioLibro;
}
public int setCantidadEnStock() {
return cantidadEnStock;
}
public class Autor {
private final String[] listaNombreAutor;
private final String email;
private final char[] listaSexoAutores;
private final Libro[] libros;
private final Libro[] listaLibrosEscritos;
public Autor(String[] listaNombreAutor, String email, char[] listaSexoAutores, Libro[] libros, Libro[] listaLibrosEscritos) {
this.listaNombreAutor = listaNombreAutor;
this.email = email;
this.listaSexoAutores = listaSexoAutores;
this.libros = libros;
this.listaLibrosEscritos = listaLibrosEscritos;
}
//Metodos get y set
public String[] getListaNombreAutor() {
return listaNombreAutor;
}
public Libro[] getListaLibrosEscritos() {
return listaLibrosEscritos;
}
public String getEmail() {
return email;
}
public Libro[] getLibros() {
return libros;
}
public char[] getListaSexoAutores() {
return listaSexoAutores;
}
public char[] setListaSexoAutores() {
return listaSexoAutores;
}
public String[] setListaNombreAutor() {
return listaNombreAutor;
}
public Libro[] setLibros() {
return libros;
}
public String setEmail() {
return email;
}