Search in sources :

Example 1 with IsBlankAtom

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");
}
Also used : IsBlankAtom(org.apache.stanbol.rules.manager.atoms.IsBlankAtom) IObjectAtom(org.apache.stanbol.rules.manager.atoms.IObjectAtom)

Aggregations

IObjectAtom (org.apache.stanbol.rules.manager.atoms.IObjectAtom)1 IsBlankAtom (org.apache.stanbol.rules.manager.atoms.IsBlankAtom)1