57 lines
1.3 KiB
Java
57 lines
1.3 KiB
Java
/*
|
|
* 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 Metier;
|
|
|
|
/**
|
|
*
|
|
* @author famille Thevenot
|
|
*/
|
|
public class Produit { //peut être abstraite
|
|
protected String designation;
|
|
protected double prix;
|
|
protected String marque;
|
|
|
|
public Produit(String designation, double prix, String marque) {
|
|
this.designation = designation;
|
|
this.prix = prix;
|
|
this.marque = marque;
|
|
}
|
|
// Méthode pour obtenir les informations du produit
|
|
public String afficherCaracteristiques(){
|
|
return designation+prix+marque;
|
|
}
|
|
// Méthode pour afficher le coût d'une heure de réparation (si applicable)
|
|
public String afficherCoutHeureReparation(){
|
|
return "pas de prix";
|
|
}
|
|
|
|
public String getDesignation() {
|
|
return designation;
|
|
}
|
|
|
|
public void setDesignation(String designation) {
|
|
this.designation = designation;
|
|
}
|
|
|
|
public double getPrix() {
|
|
return prix;
|
|
}
|
|
|
|
public void setPrix(float prix) {
|
|
this.prix = prix;
|
|
}
|
|
|
|
public String getMarque() {
|
|
return marque;
|
|
}
|
|
|
|
public void setMarque(String marque) {
|
|
this.marque = marque;
|
|
}
|
|
|
|
|
|
|
|
}
|