KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > definition > DefinitionAwareInterceptor


1 /*
2  * Nanning Aspects
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package com.tirsen.nanning.definition;
8
9 import com.tirsen.nanning.MethodInterceptor;
10
11 /**
12  * if your interceptor needs access to its definition then make sure you extend this class or one of its
13  * subclass like BasicInterceptor
14  *
15  * TODO document DefinitionAwareInterceptor
16  *
17  * <!-- $Id: DefinitionAwareInterceptor.java,v 1.5 2003/05/22 20:18:32 tirsen Exp $ -->
18  *
19  * @author $Author: tirsen $
20  * @version $Revision: 1.5 $
21  *
22  * @deprecated please use the new {@link com.tirsen.nanning.config.AspectSystem} framework instead.
23  */

24 public interface DefinitionAwareInterceptor extends MethodInterceptor {
25     void setInterceptorDefinition(InterceptorDefinition interceptorDefinition);
26 }
27
Popular Tags