use of org.apache.stanbol.rules.manager.atoms.IndividualPropertyAtom in project stanbol by apache.
the class RuleParserImpl method individualPropertyAtom.
public final IndividualPropertyAtom individualPropertyAtom() throws ParseException {
IObjectAtom uri1;
IObjectAtom uri2;
IObjectAtom uri3;
jj_consume_token(HAS);
jj_consume_token(LPAR);
uri1 = iObject();
jj_consume_token(COMMA);
uri2 = iObject();
jj_consume_token(COMMA);
uri3 = iObject();
jj_consume_token(RPAR);
{
if (true)
return new IndividualPropertyAtom(uri1, uri2, uri3);
}
throw new Error("Missing return statement in function");
}
Aggregations