blob: 5904c2ebdfc7b5b80b5e1b9828d518328d61e91d [file] [log] [blame]
package org.apache.xpath.parser;
public class QuantifiedExpr extends NonExecutableExpression
{
/**
* Constructor for QuantifiedExpr
*/
public QuantifiedExpr(XPath parser)
{
super(parser);
}
/**
* @see SimpleNode#shouldReduceIfOneChild()
*/
public boolean shouldReduceIfOneChild()
{
return (jjtGetNumChildren() == 1) ? true : false;
}
}