classe Entreprise modifiée
This commit is contained in:
parent
a90bb835c4
commit
d6ed68a079
@ -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=\
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user