Package ghidra.app.services
Interface GoToServiceListener
- All Known Implementing Classes:
GoToAddressLabelDialog
public interface GoToServiceListener
Listener that is notified when the GOTO completes.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
gotoCompleted
(String queryString, boolean foundResults) Notification that the GOTO completed.void
gotoFailed
(Exception exc) Notification that the GOTO failed with an exception.
-
Method Details
-
gotoCompleted
Notification that the GOTO completed.- Parameters:
queryString
- original query stringfoundResults
- true if at least one hit was found for the query
-
gotoFailed
Notification that the GOTO failed with an exception.- Parameters:
exc
- the exception that occurred.
-