1 10 package com.hp.hpl.jena.reasoner.rulesys.impl; 11 12 24 public class GenericChoiceFrame extends FrameObject { 25 26 27 EnvironmentFrame envFrame; 28 29 30 int trailIndex; 31 32 33 int cpc; 34 35 36 int cac; 37 38 43 public void init(LPInterpreter interpreter) { 44 envFrame = interpreter.envFrame; 45 trailIndex = interpreter.trail.size(); 46 } 47 48 51 public void setContinuation(int pc, int ac) { 52 cpc = pc; 53 cac = ac; 54 } 55 56 } 57 58 59 | Popular Tags |