From 6fc99cba679787b256d09c829271dda73395fc33 Mon Sep 17 00:00:00 2001 From: "ines.benalia" Date: Thu, 12 Sep 2024 08:56:15 +0200 Subject: [PATCH 1/2] =?UTF-8?q?cr=C3=A9ation=20des=20variables=20membres?= =?UTF-8?q?=20de=20la=20classe=20Instrument?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/métiers/Instrument.java | 39 ++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/src/métiers/Instrument.java b/src/métiers/Instrument.java index f4f88e2..04db026 100644 --- a/src/métiers/Instrument.java +++ b/src/métiers/Instrument.java @@ -1,13 +1,26 @@ -/* - * 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 métiers; - -/** - * - * @author famille Thevenot - */ -public class Instrument { - -} +/* + * 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 métiers; + +/** + * + * @author famille Thevenot + */ +public class Instrument { + + private int ref; + private String designation; + private int qteStock; + private float prix; + + public Instrument(int ref, String designation, int qteStock, float prix){ + this.ref=ref; + this.designation=designation; + this.qteStock=qteStock; + this.prix=prix; + + } + +} From aeffca7bccb6cd9b66f663026cb14ff89e84fd78 Mon Sep 17 00:00:00 2001 From: "ines.benalia" Date: Thu, 12 Sep 2024 09:06:59 +0200 Subject: [PATCH 2/2] =?UTF-8?q?cr=C3=A9ation=20des=20m=C3=A9thodes=20get/s?= =?UTF-8?q?et/toString=20de=20la=20classe=20Instrument?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/métiers/Instrument.java | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/src/métiers/Instrument.java b/src/métiers/Instrument.java index 04db026..f38de2f 100644 --- a/src/métiers/Instrument.java +++ b/src/métiers/Instrument.java @@ -23,4 +23,41 @@ public class Instrument { } + @Override + public String toString() { + return "Instrument{" + "ref=" + ref + ", designation=" + designation + ", qteStock=" + qteStock + ", prix=" + prix + '}'; + } + + public void setRef(int ref) { + this.ref = ref; + } + + public void setDesignation(String designation) { + this.designation = designation; + } + + public void setQteStock(int qteStock) { + this.qteStock = qteStock; + } + + public void setPrix(float prix) { + this.prix = prix; + } + + public int getRef() { + return ref; + } + + public String getDesignation() { + return designation; + } + + public int getQteStock() { + return qteStock; + } + + public float getPrix() { + return prix; + } + }