-
Type:
New Feature
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.0
-
Fix Version/s: 3.0
-
Labels:None
In analogy with overloading operators like empty(), size() etc, provide a way to overload property "get" and "set" operators ([] and .), like
public Object getAt(Object obj, Object index) {...} public Object putAt(Object obj, Object index, Object value) {...}
Overloaded operators should be tried before any standard access stategy, ie MAP, POJO etc.