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