Overloaded to make variables appear as bean properties or via the subscript operator
(String property)
| 121 | * Overloaded to make variables appear as bean properties or via the subscript operator |
| 122 | */ |
| 123 | @Override |
| 124 | public Object getProperty(String property) { |
| 125 | /* @todo we should check if we have the property with the metaClass instead of try/catch */ |
| 126 | try { |
| 127 | return super.getProperty(property); |
| 128 | } |
| 129 | catch (MissingPropertyException e) { |
| 130 | return getVariable(property); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Overloaded to make variables appear as bean properties or via the subscript operator |
nothing calls this directly
no test coverage detected