KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > alt > jiapi > Instrumentor


1 package alt.jiapi;
2
3 import alt.jiapi.reflect.JiapiClass;
4 /**
5  * Interface for Instrumentors.
6  *
7  * @author Mika Riekkinen
8  */

9 public interface Instrumentor {
10     /**
11      * Instrument a given JiapiClass.
12      *
13      * @exception InstrumentationException is thrown on failure
14      */

15     public void instrument(JiapiClass clazz) throws InstrumentationException;
16 }
17
Popular Tags