*/
@Override
public SubQueryLoaderResult loadSubReport(int id) throws ReportException {
ReportgenQuery query = manager.find(ReportgenQuery.class, id);
if(query == null) {
throw new ReportException("Запроса с номером " + id + " не существует!");
}
SubQueryLoaderResult res = new SubQueryLoaderResult();
res.title = query.getTitle();
res.description = query.getDescription();