Interface BytecodeProcessor

All Known Implementing Classes:
BytecodeDumper

public interface BytecodeProcessor
Post-processes generated class bytes before they are written out.
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    processBytecode(String name, byte[] original)
    Transforms the bytecode for a generated class.
  • Method Details

    • processBytecode

      byte[] processBytecode(String name, byte[] original)
      Transforms the bytecode for a generated class.
      Parameters:
      name - the class name
      original - the original class bytes
      Returns:
      the processed class bytes