[Smartcc-cvs] smartcc/src/org/smartcc/replay RecordingInterceptor.java,1.2,1.3
Brought to you by:
hengels
|
From: <he...@us...> - 2002-05-29 15:12:13
|
Update of /cvsroot/smartcc/smartcc/src/org/smartcc/replay
In directory usw-pr-cvs1:/tmp/cvs-serv32607/src/org/smartcc/replay
Modified Files:
RecordingInterceptor.java
Log Message:
o AbstractInterceptor: baseclass for interceptors
o InterceptorConfiguration
o added TracingInterceptor
Index: RecordingInterceptor.java
===================================================================
RCS file: /cvsroot/smartcc/smartcc/src/org/smartcc/replay/RecordingInterceptor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** RecordingInterceptor.java 29 May 2002 08:12:12 -0000 1.2
--- RecordingInterceptor.java 29 May 2002 15:12:08 -0000 1.3
***************
*** 4,13 ****
public class RecordingInterceptor
! implements Interceptor
{
- Interceptor next;
- public void setNext(Interceptor next) { this.next = next; }
- public Interceptor getNext() { return next; }
-
public Object invoke(Invocation invocation)
throws Throwable
--- 4,9 ----
public class RecordingInterceptor
! extends AbstractInterceptor
{
public Object invoke(Invocation invocation)
throws Throwable
|