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
 
3
import java.util.ArrayList;
4
import java.util.List;
5
 
6
/**
7
 * Created by jorgemachado on 11/10/17.
8
 */
1830 jmachado 9
public class UnitsLearningResultYear extends UnitsLearningResult
10
{
11
 
12
    int ano;
1814 jmachado 13
    List<UnitsLearningResultSemester> semesters = new ArrayList<UnitsLearningResultSemester>();
14
 
1830 jmachado 15
 
16
 
17
    public UnitsLearningResultYear() {
18
    }
19
 
20
    public UnitsLearningResultYear(int ano) {
21
        this.ano = ano;
22
    }
23
 
24
    public int getAno() {
25
        return ano;
26
    }
27
 
28
    public void setAno(int ano) {
29
        this.ano = ano;
30
    }
31
 
1814 jmachado 32
    public List<UnitsLearningResultSemester> getSemesters() {
33
        return semesters;
34
    }
35
 
36
    public void setSemesters(List<UnitsLearningResultSemester> semesters) {
37
        this.semesters = semesters;
38
    }
39
}