Ejemplo n.º 1
0
 /**
  * Set a new label for the wrapped expression, assuming it is a node
  *
  * @param label value of the new label
  */
 public static void setNodeLabel(ExpressionNode n, String label) {
   n.setLabel(label);
 }
Ejemplo n.º 2
0
 /** @return the label of the expression, assuming it is a node */
 public static String getNodeLabel(ExpressionNode n) {
   return n.getLabel();
 }