public void print() {
if (readyForPrint()) {
String title = "Сведения о типе дисконтной карты(уровни дисконта)";
HashMap<String, Object> data = new LinkedHashMap<String, Object>();
data.put("type", "Тип карты: " + selectedCard.getTitle());
TableReportOptions ops = new TableReportOptions(TableReportOptions.PageOrentation.horizontal);
PrintCreators.createGeneratedReport(title, ops, data.entrySet(), null, mainTable.getModel(), getClass());
}
}