1 28 package net.sf.jasperreports.olap.xmla; 29 30 import net.sf.jasperreports.olap.result.JROlapHierarchyLevel; 31 32 33 37 public class JRXmlaHierarchyLevel implements JROlapHierarchyLevel 38 { 39 40 private final String name; 41 private final int depth; 42 43 public JRXmlaHierarchyLevel(String name, int depth) 44 { 45 this.name = name; 46 this.depth = depth; 47 } 48 49 public int getDepth() 50 { 51 return depth; 52 } 53 54 public String getName() 55 { 56 return name; 57 } 58 59 } 60 | Popular Tags |