Package ghidra.feature.vt.api.main
Interface AssociationHook
- All Known Implementing Classes:
ImpliedMatchAssociationHook
,MatchStatusUpdaterAssociationHook
public interface AssociationHook
Interface used for a callback when associations are accepted or cleared.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
associationAccepted
(VTAssociation association) Called whenever an association has been accepted.void
associationCleared
(VTAssociation association) Called whenever an association has been cleared from the accepted state.void
markupItemStatusChanged
(VTMarkupItem markupItem) Called whenever a markupItem's status changes.
-
Method Details
-
associationAccepted
Called whenever an association has been accepted.- Parameters:
association
- the association that has been accepted.
-
associationCleared
Called whenever an association has been cleared from the accepted state.- Parameters:
association
- the association that has been cleared from the accepted state.
-
markupItemStatusChanged
Called whenever a markupItem's status changes.- Parameters:
markupItem
- the markupItem that changed.
-