Package org.apache.tapestry5.plastic
Interface PlasticClassEvent
- 
 public interface PlasticClassEvent Describes a transformed class about to be loaded.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetClassName()The name of the actual class, which will differ from the primary class name for some types.StringgetDissasembledBytecode()The bytecode for the class, disassembled and formatted as a string.StringgetPrimaryClassName()The primary class name, i.e., the class being created or transformed.ClassTypegetType()Identifies what type of class is being loaded.
 
- 
- 
- 
Method Detail- 
getPrimaryClassNameString getPrimaryClassName() The primary class name, i.e., the class being created or transformed.
 - 
getClassNameString getClassName() The name of the actual class, which will differ from the primary class name for some types.
 - 
getTypeClassType getType() Identifies what type of class is being loaded. Typically, the supporting and method invocation types will precede the primary class.
 - 
getDissasembledBytecodeString getDissasembledBytecode() The bytecode for the class, disassembled and formatted as a string. This is useful for debugging purposes.
 
- 
 
-