use of org.apache.stanbol.rules.manager.atoms.IsBlankAtom in project stanbol by apache.
the class RuleParserImpl method isBlankAtom.
public final ComparisonAtom isBlankAtom() throws ParseException {
IObjectAtom uriRes;
jj_consume_token(IS_BLANK);
jj_consume_token(LPAR);
uriRes = iObject();
jj_consume_token(RPAR);
{
if (true)
return new IsBlankAtom(uriRes);
}
throw new Error("Missing return statement in function");
}
Aggregations