JESS: Focus, defmodules through Jess Java API

2008-09-03 Thread John Chrysakis
Is there a method through Jess Java API which sets the focus module like focus jess function? Could yoy please gine me an example of how working with defmodules with Jess Java Api. (e.g changing the focus from one module to another)? Thanks in advanve, John Chrysakis

Re: JESS: Focus, defmodules through Jess Java API

2008-09-03 Thread Wolfgang Laun
It's Rete.setFocus( String name ) From the Jess side, this call (focus foomodule) is the same as (call (engine) setFocus foomodule) In Java: myRete.setFocus( foomodule ); -W On Wed, Sep 3, 2008 at 12:18 PM, John Chrysakis [EMAIL PROTECTED]wrote: Is there a method through Jess Java