Allow indexed properties container resolution in expressions
------------------------------------------------------------
Key: JEXL-119
URL: https://issues.apache.org/jira/browse/JEXL-119
Project: Commons JEXL
Issue Type: Improvement
Affects Versions: 2.0.1, 2.1
Reporter: Henri Biestro
Assignee: Henri Biestro
Fix For: 2.1
When a class exposes a "pseudo" indexed property container, JEXL should be able
to introspect and expose it.
For instance, given a class exposing the methods 'void setProperty(String name,
Object value)' and 'Object getProperty(String name)' and an instance 'o'
exposed through the context, JEXL should allow the expressions
'o.property.first' to execute 'o.getProperty("first")' and the expression
'o.property.first = "ONE"' to execute 'o.setProperty("first", "ONE").
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira