classe Entreprise modifiée

This commit is contained in:
famille Thevenot 2024-09-11 23:12:53 +02:00
parent a90bb835c4
commit d6ed68a079
2 changed files with 13 additions and 2 deletions

View File

@ -37,7 +37,7 @@ includes=**
jar.compress=false jar.compress=false
javac.classpath= javac.classpath=
# Space-separated list of extra javac options # Space-separated list of extra javac options
javac.compilerargs= javac.compilerargs=\ --enable-preview --enable-preview
javac.deprecation=false javac.deprecation=false
javac.external.vm=true javac.external.vm=true
javac.modulepath= javac.modulepath=
@ -82,7 +82,7 @@ run.classpath=\
# Space-separated list of JVM arguments used when running the project. # 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. # 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: # To set system properties for unit tests define test-sys-prop.name=value:
run.jvmargs= run.jvmargs=\ --enable-preview
run.modulepath=\ run.modulepath=\
${javac.modulepath} ${javac.modulepath}
run.test.classpath=\ run.test.classpath=\

View File

@ -4,10 +4,21 @@
*/ */
package métiers; package métiers;
import métiers.Commande;
/** /**
* *
* @author famille Thevenot * @author famille Thevenot
*/ */
public class Entreprise { 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;
}
} }