*/
private FormReportCreator createFormReporterImp(Class formClass, int reportType){
int id = getReportID(formClass, reportType);
if (id == TEST_FORM) {
return new ReportTestForm();
}
String name = getReportName(formClass, reportType);
if (id >= BASE_REPORT && id < TEST_FORM){
return new JasperFormReporter(formClass, id - BASE_REPORT + 1, name);
}