modif classe entreprise
This commit is contained in:
parent
9a0b3f147b
commit
427b1e0887
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
#pour netbeans
|
#pour netbeans
|
||||||
Libraries/*
|
Libraries/*
|
||||||
Test Libraries/*
|
Test Libraries/*
|
||||||
|
/nbproject/private/
|
||||||
|
@ -1,43 +1,54 @@
|
|||||||
/*
|
/*
|
||||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* 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
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
*/
|
*/
|
||||||
package métiers;
|
package métiers;
|
||||||
|
|
||||||
import métiers.Commande;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author famille Thevenot
|
* @author famille Thevenot
|
||||||
*/
|
*/
|
||||||
public class Entreprise {
|
public class Entreprise {
|
||||||
private String raisonSociale;
|
private String raisonSociale;
|
||||||
|
private ArrayList<Commande> lesCommandes = new ArrayList<>();
|
||||||
public Entreprise(String raisonSociale) {
|
private ArrayList<Instrument> lesInstruments = new ArrayList<>();
|
||||||
this.raisonSociale = raisonSociale;
|
|
||||||
}
|
public Entreprise(String raisonSociale) {
|
||||||
|
this.raisonSociale = raisonSociale;
|
||||||
public String getRaisonSociale() {
|
}
|
||||||
return raisonSociale;
|
|
||||||
}
|
public String getRaisonSociale() {
|
||||||
|
return raisonSociale;
|
||||||
public void setRaisonSociale(String raisonSociale) {
|
}
|
||||||
this.raisonSociale = raisonSociale;
|
|
||||||
}
|
public void setRaisonSociale(String raisonSociale) {
|
||||||
|
this.raisonSociale = raisonSociale;
|
||||||
@Override
|
}
|
||||||
public String toString() {
|
|
||||||
return "Entreprise{" + "raisonSociale=" + raisonSociale + '}';
|
@Override
|
||||||
}
|
public String toString() {
|
||||||
|
return "Entreprise{" + "raisonSociale=" + raisonSociale + '}';
|
||||||
|
}
|
||||||
public void ajouterCommande(Commande uneCommande){
|
|
||||||
}
|
|
||||||
public void supprimerCommande(Commande uneCommande){
|
public void ajouterCommande(Commande uneCommande){
|
||||||
}
|
lesCommandes.add(uneCommande);
|
||||||
|
}
|
||||||
public Commande rechercherCommande(int noCom){
|
|
||||||
Commande laCommande=null;
|
public void supprimerCommande(Commande uneCommande){
|
||||||
return laCommande;
|
lesCommandes.remove(uneCommande);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public Commande rechercherCommande(int noCom){
|
||||||
|
Commande uneCommande = null;
|
||||||
|
for(Commande laCommande : lesCommandes){
|
||||||
|
if(laCommande.noCom == noCom){
|
||||||
|
uneCommande = laCommande;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return uneCommande;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user