RafaelFascio

TP1 Ej 5Clase libro

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