màj pour version initialeV2
This commit is contained in:
66
src/main/java/com/mycompany/bibliotheque/Métier/Livre.java
Normal file
66
src/main/java/com/mycompany/bibliotheque/Métier/Livre.java
Normal file
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package com.mycompany.bibliotheque.Métier;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author dthev
|
||||
*/
|
||||
|
||||
public class Livre {
|
||||
private String titre;
|
||||
private String auteur;
|
||||
private String isbn; // ISBN sous forme de chaîne
|
||||
private Boolean emprunte;
|
||||
|
||||
public Livre(String titre, String auteur, String isbn, Boolean emprunte) {
|
||||
this.titre = titre;
|
||||
this.auteur = auteur;
|
||||
this.isbn = isbn;
|
||||
this.emprunte = emprunte;
|
||||
}
|
||||
|
||||
//getters et setters
|
||||
public String getTitre() {
|
||||
return titre;
|
||||
}
|
||||
|
||||
public void setTitre(String titre) {
|
||||
this.titre = titre;
|
||||
}
|
||||
|
||||
public String getAuteur() {
|
||||
return auteur;
|
||||
}
|
||||
|
||||
public void setAuteur(String auteur) {
|
||||
this.auteur = auteur;
|
||||
}
|
||||
|
||||
public String getIsbn() {
|
||||
return isbn;
|
||||
}
|
||||
|
||||
public void setIsbn(String isbn) {
|
||||
this.isbn = isbn;
|
||||
}
|
||||
|
||||
public boolean isEmprunte() {
|
||||
return emprunte;
|
||||
}
|
||||
|
||||
public void setEmprunte(boolean emprunte) {
|
||||
this.emprunte = emprunte;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Livre{" + "titre=" + titre + ", auteur=" + auteur + ", isbn=" + isbn + ", emprunte=" + emprunte + '}';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user