Subversion Repositories bacoAlunos

Rev

Rev 1830 | 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;
2
 
3
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
4
 
5
import java.util.ArrayList;
6
 
7
/**
8
 * Created by jorgemachado on 31/10/17.
9
 */
10
public class CourseUnitsReportsSection extends DocumentSection
11
{
12
 
13
 
14
    public CourseUnitsReportsSection()
15
    {
16
 
17
    }
18
 
19
 
20
    public void init() {
21
        setTitle("Relatórios das Unidades Curriculares");
1848 jmachado 22
        setSections(new ArrayList<DocumentSection>());
1830 jmachado 23
    }
24
}