Examples of JenaVariableMap


Examples of org.apache.stanbol.rules.base.api.JenaVariableMap

   
    ClauseEntry[] head = new ClauseEntry[this.head.size()];
    ClauseEntry[] body = new ClauseEntry[this.body.size()];
   
   
    JenaVariableMap jenaVariableMap = new JenaVariableMapImpl();
    Iterator<RuleAtom> it = this.head.iterator();
    for(int i=0; it.hasNext(); i++){
      RuleAtom atom = it.next();
      JenaClauseEntry jenaClauseEntry = atom.toJenaClauseEntry(jenaVariableMap);
      head[i] = jenaClauseEntry.getClauseEntry();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.