Package reportgen.formatter.extended.range.generic

Examples of reportgen.formatter.extended.range.generic.GenericProcessor


public class Factory {

    private static RangeProcessor getProcessor(ColRowRange range,
            RangeProcessor parent, long originalPositionthrows ReportException {
        if(range instanceof ColRowRangeGeneric) {
            return new GenericProcessor(parent, (ColRowRangeGeneric)range, originalPosition);
        }
        if(range instanceof ColRowRangeGroup) {
            return new GroupProcessor(parent, (ColRowRangeGroup)range, originalPosition);
        }
        if(range instanceof ColRowRangeCrossReport) {
View Full Code Here

TOP

Related Classes of reportgen.formatter.extended.range.generic.GenericProcessor

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.