org.aspectj.weaver.loadtime
Class ClassPreProcessorAgentAdapter

java.lang.Object
  extended by org.aspectj.weaver.loadtime.ClassPreProcessorAgentAdapter
All Implemented Interfaces:
java.lang.instrument.ClassFileTransformer

public class ClassPreProcessorAgentAdapter
extends java.lang.Object
implements java.lang.instrument.ClassFileTransformer

Java 1.5 adapter for class pre processor


Constructor Summary
ClassPreProcessorAgentAdapter()
           
 
Method Summary
 byte[] transform(java.lang.ClassLoader loader, java.lang.String className, java.lang.Class<?> classBeingRedefined, java.security.ProtectionDomain protectionDomain, byte[] bytes)
          Weaving delegation
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassPreProcessorAgentAdapter

public ClassPreProcessorAgentAdapter()
Method Detail

transform

public byte[] transform(java.lang.ClassLoader loader,
                        java.lang.String className,
                        java.lang.Class<?> classBeingRedefined,
                        java.security.ProtectionDomain protectionDomain,
                        byte[] bytes)
                 throws java.lang.instrument.IllegalClassFormatException
Weaving delegation

Specified by:
transform in interface java.lang.instrument.ClassFileTransformer
Parameters:
loader - the defining class loader
className - the name of class beeing loaded
classBeingRedefined - when hotswap is called
protectionDomain -
bytes - the bytecode before weaving
Returns:
the weaved bytecode
Throws:
java.lang.instrument.IllegalClassFormatException