Advertisement
RafaelFascio

TP1 Ej5Clase libro

Apr 21st, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.45 KB | None | 0 0
  1. import java.util.ArrayList;
  2. import java.util.Scanner;
  3.  
  4. public class Libro {
  5.  
  6.     private String titulo;
  7.     private String autor;
  8.     private String editorial;
  9.     private Integer añoDePublicacion;
  10.     private Integer precio;
  11.    
  12.     public Libro() {
  13.        
  14.     }
  15.    
  16.     public Libro(String titulo, String autor, String editorial, Integer añoDePublicacion, Integer precio) {
  17.        
  18.         this.titulo = titulo;
  19.         this.autor = autor;
  20.         this.editorial = editorial;
  21.         this.añoDePublicacion = añoDePublicacion;
  22.         this.precio = precio;
  23. }
  24.    
  25.    
  26.     @Override
  27.     public String toString() {
  28.         return "Libro [titulo=" + titulo + ", autor=" + autor + ", editorial=" + editorial + ", añoDePublicacion="
  29.                 + añoDePublicacion + ", precio=" + precio + "]";
  30.     }
  31.     //Getters and Setters
  32.  
  33.     public String getTitulo() {
  34.         return titulo;
  35.     }
  36.  
  37.     public void setTitulo(String titulo) {
  38.         this.titulo = titulo;
  39.     }
  40.  
  41.     public String getAutor() {
  42.         return autor;
  43.     }
  44.  
  45.     public void setAutor(String autor) {
  46.         this.autor = autor;
  47.     }
  48.  
  49.     public String getEditorial() {
  50.         return editorial;
  51.     }
  52.  
  53.     public void setEditorial(String editorial) {
  54.         this.editorial = editorial;
  55.     }
  56.  
  57.     public Integer getAñoDePublicacion() {
  58.         return añoDePublicacion;
  59.     }
  60.  
  61.     public void setAñoDePublicacion(Integer añoDePublicacion) {
  62.         this.añoDePublicacion = añoDePublicacion;
  63.     }
  64.  
  65.     public Integer getPrecio() {
  66.         return precio;
  67.     }
  68.  
  69.     public void setPrecio(Integer precio) {
  70.         this.precio = precio;
  71.     }
  72.    
  73.    
  74.    
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement