Interface MethodObserver


public interface MethodObserver
Implement this interface if you're interested in changes to a MethodGen object and register yourself with addObserver().
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    notify(MethodGen method)
    Notifies this observer of a change to the method.
  • Method Details

    • notify

      void notify(MethodGen method)
      Notifies this observer of a change to the method.
      Parameters:
      method - The method that changed.