Interface PlasticClassEvent


public interface PlasticClassEvent
Describes a transformed class about to be loaded.
  • Method Summary

    Modifier and Type
    Method
    Description
    The name of the actual class, which will differ from the primary class name for some types.
    The bytecode for the class, disassembled and formatted as a string.
    The primary class name, i.e., the class being created or transformed.
    Identifies what type of class is being loaded.
  • Method Details

    • getPrimaryClassName

      The primary class name, i.e., the class being created or transformed.
    • getClassName

      The name of the actual class, which will differ from the primary class name for some types.
    • getType

      Identifies what type of class is being loaded. Typically, the supporting and method invocation types will precede the primary class.
    • getDissasembledBytecode

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