KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > alt > jiapi > util > InstrumentationContextProvider


1 package alt.jiapi.util;
2
3 import alt.jiapi.InstrumentationContext;
4 import alt.jiapi.JiapiException;
5
6 /**
7  * This interface is used in conjuction with InstrumentingClassLoader.
8  *
9  * @see InstrumentingClassLoader
10  */

11 public interface InstrumentationContextProvider {
12     /**
13      * Get InstrumentationContext, that is used in instrumentation process.
14      * @return InstrumentationContext
15      */

16     public InstrumentationContext getInstrumentationContext() throws JiapiException;
17 }
18
Popular Tags