Retrieves a property on the given receiver for the specified arguments. The sender is the class that is requesting the property from the object. The MetaClass will attempt to establish the method to invoke based on the name and arguments provided. The isCallToSuper and fromInsideClass help th
(Class sender, Object receiver, String property, boolean isCallToSuper, boolean fromInsideClass)
| 69 | * @return The property's value. |
| 70 | */ |
| 71 | Object getProperty(Class sender, Object receiver, String property, boolean isCallToSuper, boolean fromInsideClass); |
| 72 | |
| 73 | /** |
| 74 | * <p>Sets a property on the given receiver for the specified arguments. The sender is the class that is setting the property from the object. |
no outgoing calls