Package net.sf.jasperreports.olap.result

Examples of net.sf.jasperreports.olap.result.JROlapHierarchyLevel


        JROlapHierarchy hierarchy = axes[pos.getAxis().getIdx()].getHierarchiesOnAxis()[pos.getIdx()];
        JROlapHierarchyLevel[] levels = hierarchy.getLevels();
        int levelIndex = -1;
        for (int i = 0; i < levels.length; i++)
        {
            JROlapHierarchyLevel level = levels[i];
            if (level != null && level.getName().equals(levelName))
            {
                levelIndex = level.getDepth();
                break;
            }
        }

        if (levelIndex == -1)
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.olap.result.JROlapHierarchyLevel

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.