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 InstrumentingClassLoader10 */11 public interface InstrumentationContextProvider {12 /**13 * Get InstrumentationContext, that is used in instrumentation process.14 * @return InstrumentationContext15 */16 public InstrumentationContext getInstrumentationContext() throws JiapiException;17 }18