Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.ArrayList;
- public class Libro {
- private String titulo;
- private ArrayList<String> autor= new ArrayList();
- private String editorial;
- private int añoDePublicacion;
- private float precio;
- public Libro(){ //Constructor sin parámetros.
- }
- public Libro(String titulo, ArrayList autor, String editorial, int añoDePublicacion, float precio){
- this.titulo= titulo; //Carga los atributos.
- this.autor= autor;
- this.editorial= editorial;
- this.añoDePublicacion= añoDePublicacion;
- this.precio= precio;
- }
- @Override
- public String toString() {
- return "Libro{" + "titulo=" + titulo + ", autores=" + autor + ", editorial=" + editorial + ", a\u00f1oDePublicacion=" + añoDePublicacion + ", precio=" + precio + '}';
- }
- //-------------------------Getters and Setters--------------------------//
- public String getTitulo() {
- return titulo;
- }
- public void setTitulo(String titulo) {
- this.titulo = titulo;
- }
- public ArrayList<String> getAutor() {
- return autor;
- }
- public void setAutor(ArrayList<String> autor) {
- this.autor = autor;
- }
- public String getEditorial() {
- return editorial;
- }
- public void setEditorial(String editorial) {
- this.editorial = editorial;
- }
- public int getAñoDePublicacion() {
- return añoDePublicacion;
- }
- public void setAñoDePublicacion(int añoDePublicacion) {
- this.añoDePublicacion = añoDePublicacion;
- }
- public float getPrecio() {
- return precio;
- }
- public void setPrecio(float precio) {
- this.precio = precio;
- }
- } //Fin class Libro.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement