use of org.apache.stanbol.rules.manager.atoms.LessEqualThanAtom in project stanbol by apache.
the class RuleParserImpl method lessEqualThanAtom.
public final LessEqualThanAtom lessEqualThanAtom() throws ParseException {
ExpressionAtom obj1;
ExpressionAtom obj2;
jj_consume_token(LESSEQUALTHAN);
jj_consume_token(LPAR);
obj1 = expressionAtom();
jj_consume_token(COMMA);
obj2 = expressionAtom();
jj_consume_token(RPAR);
{
if (true)
return new LessEqualThanAtom(obj1, obj2);
}
throw new Error("Missing return statement in function");
}
Aggregations