1 6 7 package java.lang.instrument; 8 9 10 import java.security.ProtectionDomain ; 11 12 15 16 31 32 public interface ClassFileTransformer { 33 88 byte[] 89 transform( ClassLoader loader, 90 String className, 91 Class <?> classBeingRedefined, 92 ProtectionDomain protectionDomain, 93 byte[] classfileBuffer) 94 throws IllegalClassFormatException ; 95 } 96 | Popular Tags |