org.apache.tapestry5.plastic
Interface PlasticClassEvent


public interface PlasticClassEvent

Describes a transformed class about to be loaded.


Method Summary
 String getClassName()
          The name of the actual class, which will differ from the primary class name for some types.
 String getDissasembledBytecode()
          The bytecode for the class, disassembled and formatted as a string.
 String getPrimaryClassName()
          The primary class name, i.e., the class being created or transformed.
 ClassType getType()
          Identifies what type of class is being loaded.
 

Method Detail

getPrimaryClassName

String getPrimaryClassName()
The primary class name, i.e., the class being created or transformed.


getClassName

String getClassName()
The name of the actual class, which will differ from the primary class name for some types.


getType

ClassType getType()
Identifies what type of class is being loaded. Typically, the supporting and method invocation types will precede the primary class.


getDissasembledBytecode

String getDissasembledBytecode()
The bytecode for the class, disassembled and formatted as a string. This is useful for debugging purposes.



Copyright © 2003-2012 The Apache Software Foundation.