JESS: JSR94 Public Review Available

2002-08-13 Thread ejfried
The first Public Review version of the JSR-94 1.0 Specification is now available at http://jcp.org/aboutJava/communityprocess/review/jsr094/ JSR is a specification for a new "javax.rules" package which defines an API for interfacing Java code to rule engines. The API is decidedly biased towar

Re: JESS: Bean properties and rule activations

2002-08-13 Thread ejfried
I think Alan Moore wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...] > Greetings, > > This is going to sound really dumb... > > I have a SimpleBean that has two properties property1 and > property2. I also have two rules each matching one of the > properties. > > When one of the pr

JESS: Bean properties and rule activations

2002-08-13 Thread Alan Moore
Greetings, This is going to sound really dumb... I have a SimpleBean that has two properties property1 and property2. I also have two rules each matching one of the properties. When one of the properties changes, both rules fire even though only one pattern has a reference to the changed proper

Re: JESS: modify and multifield slots

2002-08-13 Thread ejfried
I think korz, david wrote: > Executing the following code does not produce what I expected. > > (deftemplate work ... > (slot blist) Here's the problem: blist should be a multislot, since you want it to contain a Jess list. You can't put a ValueVector into a single slot -- the be

JESS: modify and multifield slots

2002-08-13 Thread korz, david
Executing the following code does not produce what I expected. -- (clear) (watch rules) (watch activations) (watch facts) (deftemplate thing (slot a) (slot b) ) (deftemplate work (slot a) (slot blist) ) (reset) (as