Package reportgen.ren.executer

Examples of reportgen.ren.executer.SubReportColumn


        //check every subreport column, is it in specified subreport or not, and
        //if it does, mark it as used
        Iterator it = set.iterator();
        while(it.hasNext()) {
            MathExpressionSubReportColumnRef col = (MathExpressionSubReportColumnRef) it.next();
            SubReportColumn val = col.getValue();
            if(val.getReport().getReportId() == subReportId) {
                used.add(val.getColumnTitle());
            }
        }
        return used;
    }
View Full Code Here


    public MathExpressionSubReportColumnRef(Element element, Context context) throws ReportException {
        super(element, context);
        QueryExecuterSub query = context.getSubreport(new Atom(getStringAttribute(element, QUERYID)));
        int index = query.getColumnIndex(element.getText());
        column = new SubReportColumn(query, index);
    }
View Full Code Here

TOP

Related Classes of reportgen.ren.executer.SubReportColumn

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.