Exemplo n.º 1
0
 /**
  * Get child tree with value of this object as integer.
  *
  * @return Tree object with parent object value as integer
  */
 public Tree getIvalueT() {
   if (isFinding() || isLabor())
     for (Tree iValueT : this.getChildTs()) if (iValueT.isIvalue()) return iValueT;
   return null;
 }