Uses of Interface
org.eclipse.jface.viewers.IContentProvider

Packages that use IContentProvider
org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets. 
 

Uses of IContentProvider in org.eclipse.jface.viewers
 

Subinterfaces of IContentProvider in org.eclipse.jface.viewers
 interface ILazyContentProvider
          The ILazyContentProvider is the content provider for table viewers created using the SWT.VIRTUAL flag that only wish to return thier contents as they are queried.
 interface IStructuredContentProvider
          An interface to content providers for structured viewers.
 interface ITreeContentProvider
          An interface to content providers for tree-structure-oriented viewers.
 

Classes in org.eclipse.jface.viewers that implement IContentProvider
 class ArrayContentProvider
          This implementation of IStructuredContentProvider handles the case where the viewer input is an unchanging array or collection of elements.
 

Methods in org.eclipse.jface.viewers that return IContentProvider
 IContentProvider ContentViewer.getContentProvider()
          Returns the content provider used by this viewer, or null if this view does not yet have a content provider.
 

Methods in org.eclipse.jface.viewers with parameters of type IContentProvider
protected  void TableViewer.assertContentProviderType(IContentProvider provider)
           
protected  void StructuredViewer.assertContentProviderType(IContentProvider provider)
          Assert that the content provider is of one of the supported types.
 void StructuredViewer.setContentProvider(IContentProvider provider)
           
 void ContentViewer.setContentProvider(IContentProvider contentProvider)
          Sets the content provider used by this viewer.
 void AbstractTreeViewer.setContentProvider(IContentProvider provider)
          The AbstractTreeViewer implementation of this method checks to ensure that the content provider is an ITreeContentProvider.