forked from LaureStrumfeld/ProjetJava-ING3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBulletin.java
More file actions
55 lines (50 loc) · 1.06 KB
/
Bulletin.java
File metadata and controls
55 lines (50 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package modele;
public class Bulletin {
int id;
int id_trim;
int id_insc;
String app_g; //appreciation générale
public Bulletin(){
this.id=0;
this.id_trim=0;
this.id_insc=0;
this.app_g=null;
}
public Bulletin(int id, int id_t,int id_i, String app_g){
this.id=id;
this.id_trim=id_t;
this.id_insc=id_i;
this.app_g=app_g;
}
public void setId(int id){
this.id=id;
}
public void setId_trim(int id_trim){
this.id_trim=id_trim;
}
public void setId_insc(int id_insc){
this.id_insc=id_insc;
}
public void set_appreciation(String app){
this.app_g=app;
}
public int getId(){
return id;
}
public int getId_trim(){
return id_trim;
}
public int getId_insc(){
return id_insc;
}
public String getAppreciation(){
return app_g;
}
public void add_moyenne(int id_eleve){
}
}