Subversion Repositories bacoAlunos

Rev

Rev 1814 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1830 jmachado 1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components;
1814 jmachado 2
 
1830 jmachado 3
import pt.estgp.estgweb.utils.documentBuilder.AbstractTableComponent;
4
 
5
import java.util.ArrayList;
6
import java.util.List;
7
 
1814 jmachado 8
/**
9
 * Created by jorgemachado on 11/10/17.
10
 */
1830 jmachado 11
public class GlobalLearningResultTable extends AbstractTableComponent
1814 jmachado 12
{
1830 jmachado 13
    List<GlobalLearningResultYear> globalLearningResultYear = new ArrayList<GlobalLearningResultYear>();
1814 jmachado 14
 
1830 jmachado 15
    int semElementosPercent;
16
    int reprovadosPercent;
17
    int aprovadosPercent;
18
 
19
    public int getSemElementosPercent() {
20
        return semElementosPercent;
21
    }
22
 
23
    public void setSemElementosPercent(int semElementosPercent) {
24
        this.semElementosPercent = semElementosPercent;
25
    }
26
 
27
    public int getReprovadosPercent() {
28
        return reprovadosPercent;
29
    }
30
 
31
    public void setReprovadosPercent(int reprovadosPercent) {
32
        this.reprovadosPercent = reprovadosPercent;
33
    }
34
 
35
    public int getAprovadosPercent() {
36
        return aprovadosPercent;
37
    }
38
 
39
    public void setAprovadosPercent(int aprovadosPercent) {
40
        this.aprovadosPercent = aprovadosPercent;
41
    }
42
 
43
 
44
 
45
    public List<GlobalLearningResultYear> getGlobalLearningResultYear() {
1814 jmachado 46
        return globalLearningResultYear;
47
    }
48
 
1830 jmachado 49
    public void setGlobalLearningResultYear(List<GlobalLearningResultYear> globalLearningResultYear) {
1814 jmachado 50
        this.globalLearningResultYear = globalLearningResultYear;
51
    }
52
}