efrei/uml-poo/etudiant/Module.java

15 lines
305 B
Java

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;
}
}