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