KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > ConstructionInterceptor


1 /*
2  * Nanning Aspects
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  * (C) 2003 Jon Tirsen
7  */

8 package com.tirsen.nanning;
9
10 public interface ConstructionInterceptor extends Interceptor {
11     Object JavaDoc construct(ConstructionInvocation invocation);
12
13     boolean interceptsConstructor(Class JavaDoc klass);
14 }
15
Popular Tags