Package org.fenixedu.academic.domain.phd.reports

Examples of org.fenixedu.academic.domain.phd.reports.RecommendationLetterReport.build()


        EPFLCandidatesReport epflReport = new EPFLCandidatesReport(workbook);
        epflReport.build(searchBean);

        RecommendationLetterReport recommendationLetterReport = new RecommendationLetterReport(workbook);
        recommendationLetterReport.build(searchBean);

        response.setContentType("application/vnd.ms-excel");
        response.setHeader("Content-Disposition", "attachment; filename=phd.xls");
        workbook.write(response.getOutputStream());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.