Class SearchTableContentProvider

  • All Implemented Interfaces:
    ISearchContentProvider, org.eclipse.jface.viewers.IContentProvider, org.eclipse.jface.viewers.IStructuredContentProvider

    public class SearchTableContentProvider
    extends java.lang.Object
    A default implementation of ISearchContentProvider for the table viewer.
    • Method Summary

      All Methods Instance Methods Concrete 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.
      java.lang.Object[] getElements​(java.lang.Object inputElement)  
      protected AbstractSearchResultPage getPage()
      Returns the search result page passed into the constructor.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.eclipse.jface.viewers.IContentProvider

        dispose, inputChanged
    • Constructor Detail

      • SearchTableContentProvider

        public SearchTableContentProvider​(AbstractSearchResultPage page)
        Creates a new content provider for the given search result page.
        Parameters:
        page - not null
    • Method Detail

      • getElements

        public java.lang.Object[] getElements​(java.lang.Object inputElement)
      • clear

        public void clear()
        Description copied from interface: ISearchContentProvider
        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.

      • elementsChanged

        public void elementsChanged​(java.lang.Object[] elements)
        Description copied from interface: ISearchContentProvider
        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
      • getPage

        protected AbstractSearchResultPage getPage()
        Returns the search result page passed into the constructor.
        Returns:
        the search result page (never null)