Uses of Class
it.eng.spagobi.engines.qbe.crosstable.Node

Packages that use Node
it.eng.spagobi.engines.qbe.crosstable   
 

Uses of Node in it.eng.spagobi.engines.qbe.crosstable
 

Methods in it.eng.spagobi.engines.qbe.crosstable that return Node
 Node Node.clone()
          Clone only the value and the children
 Node CrossTab.getColumnsRoot()
           
 Node CrossTab.getRowsRoot()
           
 

Methods in it.eng.spagobi.engines.qbe.crosstable that return types with arguments of type Node
 java.util.List<Node> Node.getChilds()
           
 java.util.List<Node> Node.getLeafs()
          Return the list of leafs of the subtree with this node as radix
 java.util.List<Node> Node.getLevel(int level)
          return the list of nodes of the passed level
 

Methods in it.eng.spagobi.engines.qbe.crosstable with parameters of type Node
 void Node.addChild(Node child)
           
 void CrossTab.addSubtotalsToTheNode(Node n, boolean horizontal, int level, boolean measuresOnRow)
          Prepare and execute a CF for the subtotals
 boolean Node.isChild(Node child)
           
 

Method parameters in it.eng.spagobi.engines.qbe.crosstable with type arguments of type Node
 void Node.setChilds(java.util.List<Node> childs)