Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package TP1;
- import java.util.ArrayList;
- public class Libro {
- private String Titulo;
- private ArrayList<String> Autor;
- private String Editorial;
- private int Año_pub;
- private double Precio;
- private String Genero;
- public Libro() {
- }
- public ArrayList<String> getAutor() {
- return this.Autor;
- }
- public String getEditorial() {
- return this.Editorial;
- }
- public double getPrecio() {
- return this.Precio;
- }
- public Libro(String Titulo,ArrayList<String> Autor,String Editorial,int Año_pub,double Precio, String Genero) {
- this.Titulo=Titulo;
- this.Autor=Autor;
- this.Editorial=Editorial;
- this.Año_pub=Año_pub;
- this.Precio=Precio;
- this.Genero=Genero;
- }
- @Override
- public String toString() {
- return "Libro [Titulo=" + Titulo + ", Autor=" + Autor + ", Editorial=" + Editorial + ", Año_pub=" + Año_pub
- + ", Precio=" + Precio + ", Genero=" + Genero + "]";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment