Ejemplo n.º 1
0
        public Object GetMap(IDictionary <String, Object> map)
        {
            // If the map does not contain the key, this is allowed and represented as null
            var wrapper = (EventBean[])map.Get(_propertyName);

            return(BaseNestableEventUtil.GetArrayPropertyValue(wrapper, _index, _nestedGetter));
        }
Ejemplo n.º 2
0
 public Object GetObjectArray(Object[] array)
 {
     // If the map does not contain the key, this is allowed and represented as null
     EventBean[] wrapper = (EventBean[])array[_propertyIndex];
     return(BaseNestableEventUtil.GetArrayPropertyValue(wrapper, _index, _nestedGetter));
 }