1 13 14 package mondrian.olap; 15 16 20 public interface Level extends OlapElement { 21 22 33 int getDepth(); 34 Hierarchy getHierarchy(); 35 36 Level getChildLevel(); 37 Level getParentLevel(); 38 boolean isAll(); 39 boolean areMembersUnique(); 40 LevelType getLevelType(); 41 42 43 Property[] getProperties(); 44 45 Property[] getInheritedProperties(); 46 47 49 MemberFormatter getMemberFormatter(); 50 51 55 int getApproxRowCount(); 56 } 57 58 | Popular Tags |