Subversion Repositories bacoAlunos

Rev

Rev 1830 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.services.courses.coursereport.documentmodel;

import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;

/**
 * Created by jorgemachado on 11/10/17.
 */

public class ConclusionsSection extends DocumentSection
{

    public ConclusionsSection()
    {
    }

    public void init()
    {
        super.setTitle("Conclusões");
        super.getSections().add(new GenericTextSection("Identificação de Problemas"));
        super.getSections().add(new GenericTextSection("Melhorias"));
    }
}