classe Entreprise modifiée
This commit is contained in:
parent
a90bb835c4
commit
d6ed68a079
@ -37,7 +37,7 @@ includes=**
|
||||
jar.compress=false
|
||||
javac.classpath=
|
||||
# Space-separated list of extra javac options
|
||||
javac.compilerargs=
|
||||
javac.compilerargs=\ --enable-preview --enable-preview
|
||||
javac.deprecation=false
|
||||
javac.external.vm=true
|
||||
javac.modulepath=
|
||||
@ -82,7 +82,7 @@ run.classpath=\
|
||||
# Space-separated list of JVM arguments used when running the project.
|
||||
# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value.
|
||||
# To set system properties for unit tests define test-sys-prop.name=value:
|
||||
run.jvmargs=
|
||||
run.jvmargs=\ --enable-preview
|
||||
run.modulepath=\
|
||||
${javac.modulepath}
|
||||
run.test.classpath=\
|
||||
|
@ -4,10 +4,21 @@
|
||||
*/
|
||||
package métiers;
|
||||
|
||||
import métiers.Commande;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author famille Thevenot
|
||||
*/
|
||||
public class Entreprise {
|
||||
private String raisonSociale;
|
||||
public void ajouterCommande(Commande uneCommande){
|
||||
}
|
||||
public void supprimerCommande(Commande uneCommande){
|
||||
}
|
||||
|
||||
public Commande rechercherCommande(int noCom){
|
||||
Commande laCommande=null;
|
||||
return laCommande;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user