01: /*
02: * Created on Oct 27, 2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.jlisa;
08:
09: import javax.rules.InvalidRuleSessionException;
10:
11: /**
12: * @author beedlem
13: *
14: * To change the template for this generated type comment go to
15: * Window>Preferences>Java>Code Generation>Code and Comments
16: */
17: public class JLisaInterpreter {
18:
19: /**
20: *
21: */
22: public JLisaInterpreter() {
23: super ();
24: // TODO Auto-generated constructor stub
25: }
26:
27: public static void main(String[] args) {
28: JLisa jl = new JLisa();
29: if (jl != null)
30: // jl.executeRules();
31: jl.run();
32: }
33: }
|