Eclipse Platform
2.1

Uses of Class
org.eclipse.jface.viewers.Viewer

Packages that use Viewer
org.eclipse.compare Provides support for performing structural and textual compare operations on arbitrary data and displaying the results. 
org.eclipse.compare.contentmergeviewer Support for compare and merge viewers which show the content side-by-side. 
org.eclipse.compare.structuremergeviewer Provides support for finding and displaying the differences between hierarchically structured data. 
org.eclipse.debug.ui Provides a generic debugger user interface that clients may customize via standard workbench extension points. 
org.eclipse.jface.text Provides a framework for creating, manipulating, displaying and editing text documents. 
org.eclipse.jface.text.source Provides a framework for connecting document regions with annotations and for displaying those annotations in combination with an ITextViewer
org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets. 
org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. 
org.eclipse.ui.dialogs Classes for standard dialogs, wizards, and preference pages in the Eclipse Platform User Interface. 
org.eclipse.ui.model Provides a workbench adapter for displaying workbench elements in the UI without having to know the concrete type of the element. 
org.eclipse.ui.views.navigator Provides the standard Resource Navigator view which presents the tree of resources in the workspace. 
 

Uses of Viewer in org.eclipse.compare
 

Methods in org.eclipse.compare that return Viewer
static Viewer CompareUI.findStructureViewer(Viewer oldViewer, ICompareInput input, Composite parent, CompareConfiguration configuration)
          Returns a structure compare viewer based on an old viewer and an input object.
static Viewer CompareUI.findContentViewer(Viewer oldViewer, ICompareInput input, Composite parent, CompareConfiguration configuration)
          Returns a content compare viewer based on an old viewer and an input object.
static Viewer CompareUI.findContentViewer(Viewer oldViewer, Object input, Composite parent, CompareConfiguration configuration)
          Returns a content compare viewer based on an old viewer and an input object.
 Viewer CompareEditorInput.createDiffViewer(Composite parent)
          Factory method for creating a differences viewer for the top left pane.
 Viewer CompareEditorInput.findStructureViewer(Viewer oldViewer, ICompareInput input, Composite parent)
          Implements the dynamic viewer switching for structure viewers.
 Viewer CompareEditorInput.findContentViewer(Viewer oldViewer, ICompareInput input, Composite parent)
          Implements the dynamic viewer switching for content viewers.
 Viewer IViewerCreator.createViewer(Composite parent, CompareConfiguration config)
          Creates a new viewer under the given SWT parent control.
 Viewer CompareViewerSwitchingPane.getViewer()
          Returns the current viewer.
protected abstract  Viewer CompareViewerSwitchingPane.getViewer(Viewer oldViewer, Object input)
          Returns a viewer which is able to display the given input.
 

Methods in org.eclipse.compare with parameters of type Viewer
static Viewer CompareUI.findStructureViewer(Viewer oldViewer, ICompareInput input, Composite parent, CompareConfiguration configuration)
          Returns a structure compare viewer based on an old viewer and an input object.
static Viewer CompareUI.findContentViewer(Viewer oldViewer, ICompareInput input, Composite parent, CompareConfiguration configuration)
          Returns a content compare viewer based on an old viewer and an input object.
static Viewer CompareUI.findContentViewer(Viewer oldViewer, Object input, Composite parent, CompareConfiguration configuration)
          Returns a content compare viewer based on an old viewer and an input object.
 Viewer CompareEditorInput.findStructureViewer(Viewer oldViewer, ICompareInput input, Composite parent)
          Implements the dynamic viewer switching for structure viewers.
 Viewer CompareEditorInput.findContentViewer(Viewer oldViewer, ICompareInput input, Composite parent)
          Implements the dynamic viewer switching for content viewers.
protected abstract  Viewer CompareViewerSwitchingPane.getViewer(Viewer oldViewer, Object input)
          Returns a viewer which is able to display the given input.
 

Uses of Viewer in org.eclipse.compare.contentmergeviewer
 

Subclasses of Viewer in org.eclipse.compare.contentmergeviewer
 class ContentMergeViewer
          An abstract compare and merge viewer with two side-by-side content areas and an optional content area for the ancestor.
 class TextMergeViewer
          A text merge viewer uses the RangeDifferencer to perform a textual, line-by-line comparison of two (or three) input documents.
 

Uses of Viewer in org.eclipse.compare.structuremergeviewer
 

Subclasses of Viewer in org.eclipse.compare.structuremergeviewer
 class DiffTreeViewer
          A tree viewer that works on objects implementing the IDiffContainer and IDiffElement interfaces.
 class StructureDiffViewer
          A diff tree viewer that can be configured with a IStructureCreator to retrieve a hierarchical structure from the input object (an ICompareInput) and perform a two-way or three-way compare on it.
 

Uses of Viewer in org.eclipse.debug.ui
 

Methods in org.eclipse.debug.ui that return Viewer
protected abstract  Viewer AbstractDebugView.createViewer(Composite parent)
          Creates and returns this view's underlying viewer.
 Viewer AbstractDebugView.getViewer()
           
 Viewer IDebugView.getViewer()
          Returns the viewer contained in this debug view.
 

Uses of Viewer in org.eclipse.jface.text
 

Subclasses of Viewer in org.eclipse.jface.text
 class TextViewer
          SWT based implementation of ITextViewer.
 

Uses of Viewer in org.eclipse.jface.text.source
 

Subclasses of Viewer in org.eclipse.jface.text.source
 class ProjectionSourceViewer
          A projection source viewer is a source viewer which does not support the concept of a visible region.
 class SourceViewer
          SWT based implementation of ISourceViewer.
 

Uses of Viewer in org.eclipse.jface.viewers
 

Subclasses of Viewer in org.eclipse.jface.viewers
 class AbstractTreeViewer
          Abstract base implementation for tree-structure-oriented viewers (trees and table trees).
 class CheckboxTableViewer
          A concrete viewer based on an SWT Table control with checkboxes on each node.
 class CheckboxTreeViewer
          A concrete tree-structured viewer based on an SWT Tree control with checkboxes on each node.
 class ContentViewer
          A content viewer is a model-based adapter on a widget which accesses its model by means of a content provider and a label provider.
 class ListViewer
          A concrete viewer based on an SWT List control.
 class StructuredViewer
          Abstract base implementation for structure-oriented viewers (trees, lists, tables).
 class TableTreeViewer
          A concrete viewer based on a SWT TableTree control.
 class TableViewer
          A concrete viewer based on a SWT Table control.
 class TreeViewer
          A concrete viewer based on an SWT Tree control.
 

Methods in org.eclipse.jface.viewers that return Viewer
 Viewer DoubleClickEvent.getViewer()
          Returns the viewer that is the source of this event.
 Viewer OpenEvent.getViewer()
          Returns the viewer that is the source of this event.
protected  Viewer ViewerDropAdapter.getViewer()
          Returns the viewer to which this drop support has been added.
 

Methods in org.eclipse.jface.viewers with parameters of type Viewer
 void ArrayContentProvider.inputChanged(Viewer viewer, Object oldInput, Object newInput)
          This implementation does nothing.
 int ViewerSorter.compare(Viewer viewer, Object e1, Object e2)
          Returns a negative, zero, or positive number depending on whether the first element is less than, equal to, or greater than the second element.
 void ViewerSorter.sort(Viewer viewer, Object[] elements)
          Sorts the given elements in-place, modifying the given array.
 void IContentProvider.inputChanged(Viewer viewer, Object oldInput, Object newInput)
          Notifies this content provider that the given viewer's input has been switched to a different element.
 Object[] ViewerFilter.filter(Viewer viewer, Object parent, Object[] elements)
          Filters the given elements for the given viewer.
abstract  boolean ViewerFilter.select(Viewer viewer, Object parentElement, Object element)
          Returns whether the given element makes it through this filter.
 

Constructors in org.eclipse.jface.viewers with parameters of type Viewer
DoubleClickEvent(Viewer source, ISelection selection)
          Creates a new event for the given source and selection.
OpenEvent(Viewer source, ISelection selection)
          Creates a new event for the given source and selection.
ViewerDropAdapter(Viewer viewer)
          Creates a new drop adapter for the given viewer.
 

Uses of Viewer in org.eclipse.ui
 

Methods in org.eclipse.ui with parameters of type Viewer
 boolean ResourceWorkingSetFilter.select(Viewer viewer, Object parentElement, Object element)
          Determines if an element should be filtered out.
 Object[] ResourceWorkingSetFilter.filter(Viewer viewer, Object parent, Object[] elements)
          Filters out elements that are neither a parent nor a child of a working set element.
 

Uses of Viewer in org.eclipse.ui.dialogs
 

Methods in org.eclipse.ui.dialogs with parameters of type Viewer
 void FileEditorMappingContentProvider.inputChanged(Viewer viewer, Object oldInput, Object newInput)
           
 

Uses of Viewer in org.eclipse.ui.model
 

Fields in org.eclipse.ui.model declared as Viewer
protected  Viewer WorkbenchContentProvider.viewer
           
 

Methods in org.eclipse.ui.model with parameters of type Viewer
 void WorkbenchContentProvider.inputChanged(Viewer viewer, Object oldInput, Object newInput)
           
 

Uses of Viewer in org.eclipse.ui.views.navigator
 

Methods in org.eclipse.ui.views.navigator that return Viewer
protected  Viewer ResourceNavigatorAction.getViewer()
          Returns the resource viewer
 

Methods in org.eclipse.ui.views.navigator with parameters of type Viewer
 boolean ResourcePatternFilter.select(Viewer viewer, Object parentElement, Object element)
           
 int ResourceSorter.compare(Viewer viewer, Object o1, Object o2)
           
 


Eclipse Platform
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.