JESS: unicode - printing thai characters

2004-09-07 Thread Jonathan Tan
May I know if unicode functionality has been incorporated in JESS? it was not available in 5.0 as I found from searching the archives. But i need to write a program in JESS that displays and manipulates thai characters Is there anyway to go about it? thanks, Jonathan

JESS: clarification on Shadow Fact

2004-09-07 Thread [EMAIL PROTECTED]
Hi All I am using a java Bean in jess which is working fine in rule engine in all aspects like in defclass, definstance and using directly using OBJECT etc. But when I am trying to instantiate another object in one of the support methods in that bean, Jess is throwing an exception saying shadow

Re: JESS: unicode - printing thai characters

2004-09-07 Thread ejfried
I think Jonathan Tan wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...] May I know if unicode functionality has been incorporated in JESS? it was not available in 5.0 as I found from searching the archives. But i need to write a program in JESS that displays and manipulates thai

Re: JESS: clarification on Shadow Fact

2004-09-07 Thread ejfried
I think [EMAIL PROTECTED] wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...] Hi All I am using a java Bean in jess which is working fine in rule engine in all aspects like in defclass, definstance and using directly using OBJECT etc. But when I am trying to instantiate another

JESS: Come back to : Add new values to multislot

2004-09-07 Thread Nicolas Fortin
Hi everybody, I tried this little examplethat someone asked in a previous message : (deftemplate alphalist (multislot alpha)) (assert (alphalist (alpha (create$ a b c Dr. Friedman-Hill suggested to add values with the following rule : (defrule modify-slot?f - (alphalist (alphalist

RE: JESS: Muilti-line comments

2004-09-07 Thread Alan Moore
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, September 03, 2004 10:52 AM To: [EMAIL PROTECTED] Subject: Re: JESS: Muilti-line comments Another thing I will do in the engine is provide rule properties; you

Re: JESS: unicode - printing thai characters

2004-09-07 Thread Jonathan Tan
Hi, I am trying to display thai font (presently using unicode escape sequences \u0e00-\u0e7f) and am trying to display both english and thai simulatiously. My experience with using unicode sequences in pure java (jdk 1.4 and above), it work fine. Jess, however, just prints out the numerical

Re: JESS: Muilti-line comments

2004-09-07 Thread ejfried
I think Alan Moore wrote: Another thing I will do in the engine is provide rule properties; you could thereby turn existing rules on or off. This works in a running system, which is even better. Is this similar to attributes in other languages? I think so. Can jess code define

Re: JESS: Come back to : Add new values to multislot

2004-09-07 Thread ejfried
I think Nicolas Fortin wrote: But Jess complains because (alphalist (alphalist $?c)) is not true. So I changed the rule for : (defrule modify-slot ?f - (alphalist (alpha $?c)) = (modify ?f (alpha (create$ ?c d e f However when I type (run), I get no response, the cursor is still

Re: JESS: unicode - printing thai characters

2004-09-07 Thread ejfried
I think Jonathan Tan wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...] Hi, I am trying to display thai font (presently using unicode escape sequences \u0e00-\u0e7f) and am trying to display both english and thai simulatiously. My experience with using unicode sequences in pure