1 22 package org.jboss.aop.standalone; 23 24 import java.lang.instrument.Instrumentation ; 25 26 32 public class PluggableInstrumentor 33 { 34 private static Instrumentation instrumentor; 35 36 public static Instrumentation getInstrumentor() 37 { 38 return instrumentor; 39 } 40 41 public static void premain(String agentArgs, Instrumentation inst) 42 { 43 instrumentor = inst; 44 } 45 } 46 | Popular Tags |