Package reportgen.factory

Examples of reportgen.factory.ReportVersion


     * @param rpt
     * @return
     * @throws reportgen.ren.ReportException
     */
    public ReportQuery(Element root, final SubQueryLoader sl) throws ReportException {
        version = new ReportVersion(root);
        rowCount = new RowCount(root);

        final Set<Atom> atoms = new HashSet<Atom>();
        AtomRegistrar ar = new AtomRegistrar() {
            @Override
View Full Code Here


                    return ql.getID();
            } else if (columnIndex == COL_QUERY) {
                return (ql.isWrong() ? "(НЕ КОРРЕКТЕН) ":"") + ql.getTitle();
            } else if (columnIndex == COL_VERSION) {
                try {
                    ReportVersion ver = ql.getVersion();
                    ReportVersion realVer = ver.realVersion();
                    return realVer.toString()
                            + (realVer.isSupported() ? "":" (не поддерживается)")
                            + (realVer == ver ? "":"(обновлено)");
                } catch (Exception ex) {
                    return "unknown";
                }
            } else {
View Full Code Here

TOP

Related Classes of reportgen.factory.ReportVersion

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.