Uses of Class
org.palo.api.ElementNode

Packages that use ElementNode
org.palo.api   
org.palo.api.ext.subsets   
org.palo.api.impl   
org.palo.api.subsets   
org.palo.api.subsets.filter   
org.palo.api.utils   
 

Uses of ElementNode in org.palo.api
 

Methods in org.palo.api that return ElementNode
 ElementNode[] Hierarchy.getAllElementNodes()
          Returns an array of all element nodes of the consolidation hierarchy of this hierarchy.
 ElementNode[] Dimension.getAllElementNodes()
          Deprecated. use Hierarchy.getAllElementNodes() instead.
 ElementNode[] ElementNode.getChildren()
          Returns the children of this ElementNode.
 ElementNode[] Hierarchy.getElementsTree()
          Returns the root-nodes of the element-tree.
 ElementNode[] Dimension.getElementsTree()
          Deprecated. use Hierarchy.getElementsTree() instead.
 ElementNode ElementNode.getParent()
          Returns the parent ElementNode or null.
 ElementNode[] VirtualDimensionDefinition.getRootElements()
          Deprecated.  
 ElementNode[] DefaultVirtualDimensionDefinition.getRootElements()
           
 ElementNode[] HierarchyFilter.postprocessRootNodes(ElementNode[] rootNodes)
          If and only if the dimension is flat, this method can be used to post-process the root element nodes.
 ElementNode[] DimensionFilter.postprocessRootNodes(ElementNode[] rootNodes)
          Deprecated. If and only if the dimension is flat, this method can be used to post-process the root element nodes.
 

Methods in org.palo.api with parameters of type ElementNode
 void ElementNode.addChild(ElementNode child)
          Adds a child to this ElementNode.
 ElementNode[] HierarchyFilter.postprocessRootNodes(ElementNode[] rootNodes)
          If and only if the dimension is flat, this method can be used to post-process the root element nodes.
 ElementNode[] DimensionFilter.postprocessRootNodes(ElementNode[] rootNodes)
          Deprecated. If and only if the dimension is flat, this method can be used to post-process the root element nodes.
 void ElementNode.removeChild(ElementNode child)
          Removes a child from this ElementNode.
 void ElementNode.setParent(ElementNode parent)
           
 void ElementNodeVisitor.visit(ElementNode elementNode, ElementNode parent)
          Called during element-node visiting.
 

Constructors in org.palo.api with parameters of type ElementNode
DefaultVirtualDimensionDefinition(Dimension sourceDimension, Element[] elements, ElementNode[] rootNodes, boolean isFlat, java.lang.String activeSubset)
           
 

Uses of ElementNode in org.palo.api.ext.subsets
 

Methods in org.palo.api.ext.subsets that return ElementNode
 ElementNode[] SubsetHandler.getVisibleRootNodes()
          Deprecated. Determines and returns the visible root ElementNodes.
 

Uses of ElementNode in org.palo.api.impl
 

Methods in org.palo.api.impl that return ElementNode
 ElementNode[] HierarchyImpl.getAllElementNodes()
           
 ElementNode[] HierarchyImpl.getElementsTree()
           
 

Uses of ElementNode in org.palo.api.subsets
 

Methods in org.palo.api.subsets that return ElementNode
 ElementNode[] Subset2.getHierarchy()
          Deprecated. use Subset2.getRootNodes() instead.
 ElementNode[] Subset2.getRootNodes()
          Returns all root nodes of this subset.
 

Uses of ElementNode in org.palo.api.subsets.filter
 

Methods in org.palo.api.subsets.filter that return types with arguments of type ElementNode
 java.util.List<ElementNode> SortingFilter.sort(java.util.Set<Element> elements)
          Sorts the given subset element list using the current settings.
 

Method parameters in org.palo.api.subsets.filter with type arguments of type ElementNode
 void AliasFilter.filter(java.util.List<ElementNode> elements)
           
 void StructuralFilter.filter(java.util.List<ElementNode> nodes, java.util.Set<Element> elements)
          Filters the given element hierarchy represented by ElementNodes.
 void SortingFilter.filter(java.util.List<ElementNode> hierarchy, java.util.Set<Element> elements)
           
 void PicklistFilter.filter(java.util.List<ElementNode> hiers, java.util.Set<Element> elements)
          Inserts picked elements at front or back of the given element hierarchy.
 void HierarchicalFilter.filter(java.util.List<ElementNode> hier, java.util.Set<Element> elements)
           
 

Uses of ElementNode in org.palo.api.utils
 

Methods in org.palo.api.utils with parameters of type ElementNode
static java.lang.String ElementNodeUtilities.getPath(ElementNode elNode)
          Determines the path for the given ElementNode.
static ElementPath ElementNodeUtilities.getPath(ElementNode elNode, Hierarchy hierarchy)
           
static Element[] ElementNodeUtilities.getPathElements(ElementNode elNode)
          Determines the path for the given ElementNode.
static void ElementNodeUtilities.traverse(ElementNode[] roots, ElementNodeVisitor visitor)