Package com.hp.hpl.jena.reasoner.rulesys

Examples of com.hp.hpl.jena.reasoner.rulesys.Rule$ParserException


    body.add(makeSubOfSomeTriple(var0, var1, var2));
    body.add(makePropertyAssertionFunctor(var1));
    body.add(makeSubclassTriple(var2, BOTTOM));
    ClauseEntry head = makeSubclassTriple(var0, BOTTOM);
   
    m_Rules.add(new Rule(Collections.singletonList(head), body));
  }
View Full Code Here


    List<ClauseEntry> head = CollectionUtils.makeList();
   
    Node var = freeVar.next();
    translateSub(body, sub, freeVar, var);
    translateSuper(head, sup, freeVar, var);
    m_Rules.add(new Rule(head, body));
  }
View Full Code Here

TOP

Related Classes of com.hp.hpl.jena.reasoner.rulesys.Rule$ParserException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.