Hello,I would like to make use of JSF EL in a non JSF context. I d like to do something like:
String name = (String) EVALUATE(child, "child.parent.name") instead of
String name = child.getParent().getName();Probably there is somewhere the EVALUATE method I am looking for. Anyone knows where?
Thanks René

