Interface ISearchContentProvider

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void clear()
      Notifies that all elements have been removed from the displayed search result.
      void elementsChanged​(java.lang.Object[] elements)
      Notifies that the set of matches for the given elements has changed.
      • Methods inherited from interface org.eclipse.jface.viewers.IContentProvider

        dispose, inputChanged
      • Methods inherited from interface org.eclipse.jface.viewers.IStructuredContentProvider

        getElements
    • Method Detail

      • elementsChanged

        void elementsChanged​(java.lang.Object[] elements)
        Notifies that the set of matches for the given elements has changed.

        This method is guaranteed to be called in the UI thread. Note that this notification is asynchronous, i.e., further changes may have occurred by the time this method is called. They will be described in a future call.

        Parameters:
        elements - never null
      • clear

        void clear()
        Notifies that all elements have been removed from the displayed search result.

        This method is guaranteed to be called in the UI thread. Note that this notification is asynchronous, i.e., further changes may have occurred by the time this method is called. They will be described in a future call.