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