Class FirstTimeAnalyzedPluginEvent

java.lang.Object
ghidra.framework.plugintool.PluginEvent
ghidra.app.events.FirstTimeAnalyzedPluginEvent

public class FirstTimeAnalyzedPluginEvent extends PluginEvent
Plugin event class for notification of when programs have completed being analyzed for the first time.
  • Field Details

  • Constructor Details

    • FirstTimeAnalyzedPluginEvent

      public FirstTimeAnalyzedPluginEvent(String sourceName, Program program)
      Constructor
      Parameters:
      sourceName - source name of the plugin that created this event
      program - the program that has been analyzed for the first time
  • Method Details

    • getProgram

      public Program getProgram()
      Returns the Program that has just been analyzed for the first time. This method can return null, but only if the program has been closed and is no longer in use which can't happen if the method is called during the original event notification.
      Returns:
      the Program that has just been analyzed for the first time.