Package groovy.lang
Class TracingInterceptor
java.lang.Object
groovy.lang.TracingInterceptor
- All Implemented Interfaces:
- Interceptor
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionafterInvoke(Object object, String methodName, Object[] arguments, Object result) This code is executed after the method is optionally called.beforeInvoke(Object object, String methodName, Object[] arguments) This code is executed before the method is optionally called.booleandoInvoke()Returns the writer associated with this interceptor.voidChanges the writer associated with this interceptor.protected voidprotected void
- 
Field Details- 
writer
 
- 
- 
Constructor Details- 
TracingInterceptorpublic TracingInterceptor()
 
- 
- 
Method Details- 
getWriterReturns the writer associated with this interceptor.
- 
setWriterChanges the writer associated with this interceptor.
- 
beforeInvokeDescription copied from interface:InterceptorThis code is executed before the method is optionally called.- Specified by:
- beforeInvokein interface- Interceptor
- Parameters:
- object- receiver object for the method call
- methodName- name of the method to call
- arguments- arguments to the method call
- Returns:
- any arbitrary result that replaces the result of the original method call only if doInvoke() returns false and afterInvoke() relays this result.
 
- 
afterInvokeDescription copied from interface:InterceptorThis code is executed after the method is optionally called.- Specified by:
- afterInvokein interface- Interceptor
- Parameters:
- object- receiver object for the called method
- methodName- name of the called method
- arguments- arguments to the called method
- result- result of the executed method call or result of beforeInvoke if method was not called
- Returns:
- any arbitrary result that can replace the result of the original method call. Typically, the result parameter is returned.
 
- 
doInvokepublic boolean doInvoke()- Specified by:
- doInvokein interface- Interceptor
- Returns:
- whether the target method should be invoked at all.
 
- 
write
- 
writeInfo- Throws:
- IOException
 
 
-