Package groovy.lang
Interface PropertyAccessInterceptor
- 
- All Superinterfaces:
- Interceptor
 
 public interface PropertyAccessInterceptor extends Interceptor An interface that adds the ability to intercept property getters/setters - Since:
- Oct 24, 2005
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectbeforeGet(Object object, String property)Intercepts a getXXX call and returns a result.voidbeforeSet(Object object, String property, Object newValue)Intercepts a setXXX call- 
Methods inherited from interface groovy.lang.InterceptorafterInvoke, beforeInvoke, doInvoke
 
- 
 
- 
- 
- 
Method Detail- 
beforeGetObject beforeGet(Object object, String property) Intercepts a getXXX call and returns a result. The result is replaced by the real value if doGet() return false- Parameters:
- object- The target object
- property- The property to get
- Returns:
- A value supplied by the interceptor
 
 
- 
 
-