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

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

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

Methods in it.eng.spagobi.engines.qbe.crosstable that return Node
 Node CrossTab.buildSubtotalNode(int totalHeadersNumber, boolean withMeasures)
           
 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 Node.addOrderedChild(Node child)
           
 int CrossTab.addSubtotalsToTheNodeFirstLevel(Node node, boolean horizontal, int positionToAddNode)
           
 int CrossTab.addSubtotalsToTheNodeUpLevel(Node node, boolean horizontal, int startingPosition)
           
 void CrossTab.addSubtotalsToTheTree(Node node, boolean horizontal, int startingPosition)
           
 int CrossTab.addSubtotalsToTheTreeNoMeasure(Node node, boolean horizontal, int startingPosition)
           
 int Node.compareTo(Node arg0)
           
 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)
           
 

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

Method parameters in it.eng.spagobi.engines.qbe.crosstable.exporter with type arguments of type Node
protected  void CrosstabXLSExporter.buildColumnsHeader(org.apache.poi.ss.usermodel.Sheet sheet, CrossTab cs, java.util.List<Node> siblings, int rowNum, int columnNum, org.apache.poi.ss.usermodel.CreationHelper createHelper, java.util.Locale locale, org.apache.poi.ss.usermodel.CellStyle memberCellStyle, org.apache.poi.ss.usermodel.CellStyle dimensionCellStyle)
          Builds the columns' headers recursively with this order: |------------------------------------------| | 1 | 9 | |------------------------------------------| | 2 | 5 | 10 | |-----------|-----------------|------------| | 3 | 4 | 6 | 7 | 8 | 11 | 12 | |------------------------------------------|
protected  void CrosstabXLSExporter.buildRowsHeaders(org.apache.poi.ss.usermodel.Sheet sheet, CrossTab cs, java.util.List<Node> siblings, int rowNum, int columnNum, org.apache.poi.ss.usermodel.CreationHelper createHelper, java.util.Locale locale, org.apache.poi.ss.usermodel.CellStyle cellStyle)
          Builds the rows' headers recursively with this order: |-----|-----|-----| | | | 3 | | | |-----| | | 2 | 4 | | | |-----| | 1 | | 5 | | |-----|-----| | | | 7 | | | 6 |-----| | | | 8 | |-----|-----|-----| | | | 11 | | 9 | 10 |-----| | | | 12 | |-----|-----|-----|