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