Package reportgen.utils

Examples of reportgen.utils.ReportException


     */
    @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();
View Full Code Here


        for(ReportResultColumn column: getReportResult()) {
            if(column.getTitle().equals(title)) {
                return column;
            }
        }
        throw new ReportException("Результат отчета с идентификатором '" + title + "' не существует");
    }
View Full Code Here

        for(QEntity entity: getEntities(null)) {
            if(entity.getAtom().equals(atom)) {
                return entity;
            }
        }
        throw new ReportException("Сущность с идентификатором '" + atom + "' не существует");
    }
View Full Code Here

        for(QEntityProperty property: getProperties(group, entity)) {
            if(property.getIdentification().equals(name)) {
                return property;
            }
        }
        throw new ReportException("Свойства с идентификатором '" + name + "' не существует");
    }
View Full Code Here

        for(QueryResultColumn column: getQueryResults()) {
            if(column.getColTitle().equals(colTitle)) {
                return column;
            }
        }
        throw new ReportException("Результат выборки с идентификатором '" + colTitle + "' не существует");
    }
View Full Code Here

        for(QCoreInlineSQL inline: getInlines()) {
            if(inline.getAtom().equals(atom)) {
                return inline;
            }
        }
        throw new ReportException("Подзапрос с идентификатором '" + atom + "' не существует");
    }
View Full Code Here

        for(QueryExecuterSub subreport: getSubreports()) {
            if(subreport.getAtom().equals(atom)) {
                return subreport;
            }
        }
        throw new ReportException("Подотчет с идентификатором '" + atom + "' не существует");
    }
View Full Code Here

        for(CrossReport crossreport: getCrossReports()) {
            if(crossreport.getAtom().equals(atom)) {
                return crossreport;
            }
        }
        throw new ReportException("Кросс-отчет с идентификатором '" + atom + "' не существует");
    }
View Full Code Here

        for(QueryInputValue input: getInputs()) {
            if(input.getAtom().equals(atom)) {
                return input;
            }
        }
        throw new ReportException("Входное значение  с идентификатором '" + atom + "' не существует");
    }
View Full Code Here

        for(AggregateFunction function: getAggregFunctions(cls)) {
            if(function.getMnemonic().equals(mnemonic)) {
                return function;
            }
        }
        throw new ReportException("Функции с идентификатором '" + mnemonic + "' не существует");
    }
View Full Code Here

TOP

Related Classes of reportgen.utils.ReportException

Copyright © 2018 www.massapicom. 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.