Package com.cfinkel.reports.wrappers

Examples of com.cfinkel.reports.wrappers.GeneratedQuery


    public static Query getQuery(QueryElement queryElement, Report report) throws BadReportSyntaxException {
        Query query;
        if (queryElement instanceof PreparedQueryElement) {
            query = new PreparedQuery((PreparedQueryElement)queryElement,report);
        } else {
            query = new GeneratedQuery((GeneratedQueryElement)queryElement);
        }
        return query;
    }
View Full Code Here

TOP

Related Classes of com.cfinkel.reports.wrappers.GeneratedQuery

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.