Class AbstractHighlightPluginEvent

java.lang.Object
ghidra.framework.plugintool.PluginEvent
ghidra.app.events.AbstractHighlightPluginEvent
Direct Known Subclasses:
ProgramHighlightPluginEvent

public abstract class AbstractHighlightPluginEvent extends PluginEvent
Plugin event generated when the highlight in a program changes.
  • Constructor Details

    • AbstractHighlightPluginEvent

      public AbstractHighlightPluginEvent(String sourceName, String eventName, ProgramSelection highlight, Program program)
      Construct a new event.
      Parameters:
      sourceName - the name of the plugin that generated this event
      eventName - the name of the event type
      highlight - the program highlight
      program - the program associated with this event
  • Method Details

    • getHighlight

      public ProgramSelection getHighlight()
      Get the program highlight contained in this event.
      Returns:
      the program highlight in this event.
    • getProgram

      public Program getProgram()
      Get the program that the highlight refers to.
      Returns:
      the program
    • getDetails

      protected String getDetails()
      Overrides:
      getDetails in class PluginEvent