1 10 package com.hp.hpl.jena.reasoner.rulesys; 11 12 import com.hp.hpl.jena.graph.*; 13 14 31 public interface Builtin { 32 33 38 public String getName(); 39 40 43 public String getURI(); 44 45 48 public int getArgLength(); 49 50 60 public boolean bodyCall(Node[] args, int length, RuleContext context); 61 62 71 public void headAction(Node[] args, int length, RuleContext context); 72 73 77 public boolean isSafe(); 78 } 79 80 109 | Popular Tags |