Add Module.java
This commit is contained in:
parent
2102b0c062
commit
ba50ed79d6
1 changed files with 15 additions and 0 deletions
15
uml-poo/Module.java
Normal file
15
uml-poo/Module.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue