Hi,
a) it is possible to use generics in function definition?
function doSomething(ArrayList<Customer> alCustomers) {
// do it
}
doesnt work, I always retrieve Function Compilation error.
"<" Character
b) it is possible to use for each loop in DRL?
for (Customer cust : alCustomers) {
// do something more
}
I´am using Janino to parse+compile.
Thanks for advice.
Thorsten