Re: [rules-users] custom defined types in setter and getters

2007-10-03 Thread Steven Williams
No - you can use any java object as a fact, so both of your classes are
fine. For instance you could do:

when
  Car($p: paint)
then
  System.out.println($p.getName());
end

and using MVEL you could do:

when
  Car(paint.name == "red")
then
  ...


On 10/4/07, jack wu <[EMAIL PROTECTED]> wrote:
>
> Hi, i suppose the second form of fact is not supported. but i'd like to
> confirm.
>
> in other words, you can only have setters and getters that return basic
> java types. is that right? can i return java collections such as array and
> map? the documentation is not clear on that.
>
> thanks.
>
> public class Paint
> {
> String getName();
> String getColor();
> }
>
>
> public class Car
> {
> int getSize();
> Paint getPaint();
> }
>
>
> jack.
>
>
>
> --
> Got a little couch potato?
> Check out fun summer activities for 
> kids.
>
> ___
> rules-users mailing list
> rules-users@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/rules-users
>
>


-- 
Steven Williams

Supervising Consultant

Object Consulting
Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501
[EMAIL PROTECTED]
www.objectconsulting.com.au

consulting | development | training | support
our experience makes the difference
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


[rules-users] custom defined types in setter and getters

2007-10-03 Thread jack wu
Hi, i suppose the second form of fact is not supported. but i'd like to 
confirm. 

in other words, you can only have setters and getters that return basic java 
types. is that right? can i return java collections such as array and map? the 
documentation is not clear on that.

thanks.

public class Paint
{
String getName();
String getColor();
}


public class Car
{
int getSize();
Paint getPaint();
}


jack.






   

Building a website is a piece of cake. Yahoo! Small Business gives you all the 
tools to get online.
http://smallbusiness.yahoo.com/webhosting ___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users