KickJava   Java API By Example, From Geeks To Geeks.

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


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 AspectFactory {
11     
12     Object JavaDoc newInstance(Class JavaDoc classIdentifier);
13
14     void reinitialize(AspectInstance aspectInstance);
15 }
16
Popular Tags