Interface GoToServiceListener

All Known Implementing Classes:
GoToAddressLabelDialog

public interface GoToServiceListener
Listener that is notified when the GOTO completes.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    gotoCompleted(String queryString, boolean foundResults)
    Notification that the GOTO completed.
    void
    Notification that the GOTO failed with an exception.
  • Method Details

    • gotoCompleted

      void gotoCompleted(String queryString, boolean foundResults)
      Notification that the GOTO completed.
      Parameters:
      queryString - original query string
      foundResults - true if at least one hit was found for the query
    • gotoFailed

      void gotoFailed(Exception exc)
      Notification that the GOTO failed with an exception.
      Parameters:
      exc - the exception that occurred.