toPut = "не оказана";
}
extraField = new ExtraField(toPut, "Оказана: ", AlignmentType.dataInOneColoumnByLeft);
data.put("directed", extraField);
CombinedReportCreator parCreator = cCreator.createCombinedReporter(getClass(), 1);
CombinedReportOptions ops = new CombinedReportOptions();
ops.setPageA5();
ops.setOrentation(PageOrentation.horizontal);
ops.leftMargin = 0;
ops.rightMargin = 0;
ops.bottomMargin = 0;
ops.topMargin = 0;
parCreator.setUpReport(null, ops, null);
FormReportCreator creator = parCreator.createFormReporter(getClass(), 2);
TableReportOptions opts = new TableReportOptions();
opts.bottomMargin = 0;
opts.topMargin = 0;
creator.createReport(title, opts, data.entrySet(), null);
creator.finish();
for (DelegateLine2 child : getChildren()) {
if (child instanceof DelegatePrintable) {
((DelegatePrintable)child).print(parCreator);
}
}
parCreator.finish();
}