efrei/uml-poo/etudiant/Module.java

16 lines
305 B
Java
Raw Normal View History

2021-09-20 14:45:20 +02:00
public class Module {
private int idModule;
private String nom;
public int coef;
public Date dateCreation;
public Module(int idModule, String nom) {
}
public void setCoef(int coef) {
this.coef = coef;
}
public int getCoef() {
return this.coef;
}
}