OMAR_GUTIERREZ

TP1_Libro

Sep 16th, 2022
654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.94 KB | None | 0 0
  1. package TP1;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. public class Libro {
  6.     private String Titulo;
  7.     private ArrayList<String> Autor;
  8.     private String Editorial;
  9.     private int Año_pub;
  10.     private double Precio;
  11.     private String Genero;
  12.    
  13.     public Libro() {
  14.        
  15.     }
  16.    
  17.  
  18.     public ArrayList<String> getAutor() {
  19.         return this.Autor;
  20.     }
  21.  
  22.     public String getEditorial() {
  23.         return this.Editorial;
  24.     }
  25.  
  26.     public double getPrecio() {
  27.         return this.Precio;
  28.     }
  29.  
  30.  
  31.  
  32.  
  33.     public Libro(String Titulo,ArrayList<String> Autor,String Editorial,int Año_pub,double Precio, String Genero) {
  34.         this.Titulo=Titulo;
  35.         this.Autor=Autor;
  36.         this.Editorial=Editorial;
  37.         this.Año_pub=Año_pub;
  38.         this.Precio=Precio;
  39.         this.Genero=Genero;
  40.     }
  41.  
  42.  
  43.     @Override
  44.     public String toString() {
  45.         return "Libro [Titulo=" + Titulo + ", Autor=" + Autor + ", Editorial=" + Editorial + ", Año_pub=" + Año_pub
  46.                 + ", Precio=" + Precio + ", Genero=" + Genero + "]";
  47.     }
  48.  
  49.    
  50.    
  51.  
  52. }
  53.  
Advertisement
Add Comment
Please, Sign In to add comment