Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.poi.hssf.model
Class Node  view Node download Node.java

java.lang.Object
  extended byorg.apache.poi.hssf.model.Node

class Node
extends java.lang.Object

Private helper class, used to create a tree representation of the formula


Field Summary
private  Node[] children
           
private  int numChild
           
private  org.apache.poi.hssf.record.formula.Ptg value
           
 
Constructor Summary
Node(org.apache.poi.hssf.record.formula.Ptg val)
           
 
Method Summary
 Node getChild(int number)
           
 int getNumChildren()
           
 org.apache.poi.hssf.record.formula.Ptg getValue()
           
 void setChildren(Node[] child)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

private org.apache.poi.hssf.record.formula.Ptg value

children

private Node[] children

numChild

private int numChild
Constructor Detail

Node

public Node(org.apache.poi.hssf.record.formula.Ptg val)
Method Detail

setChildren

public void setChildren(Node[] child)

getNumChildren

public int getNumChildren()

getChild

public Node getChild(int number)

getValue

public org.apache.poi.hssf.record.formula.Ptg getValue()