Example usage for org.eclipse.jface.viewers TableViewer subclass-usage

List of usage examples for org.eclipse.jface.viewers TableViewer subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers TableViewer subclass-usage.

Usage

From source file org.eclipse.dltk.ui.viewsupport.ProblemTableViewer.java

/**
 * Extends a  TableViewer to allow more performance when showing error ticks.
 * A <code>ProblemItemMapper</code> is contained that maps all items in
 * the tree to underlying resource
 */
public class ProblemTableViewer extends TableViewer implements ResourceToItemsMapper.IContentViewerAccessor {

From source file org.eclipse.egit.ui.internal.history.CommitFileDiffViewer.java

class CommitFileDiffViewer extends TableViewer {
    private static final String LINESEP = System.getProperty("line.separator"); //$NON-NLS-1$

    private Repository db;

    private TreeWalk walker;

From source file org.eclipse.emf.compare.ui.viewer.content.part.property.ModelContentMergePropertyTab.java

/**
 * Represents the property view under a {@link ModelContentMergeTabFolder}'s property tab.
 * 
 * @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a>
 * @noextend This class is not intended to be subclassed by clients.
 */

From source file org.eclipse.emf.diffmerge.ui.viewers.FeaturesViewer.java

/**
 * A viewer which provides a representation of the features of a match.
 * Input: FeatureViewer.FeaturesInput ; Elements: EStructuralFeature.
 * @author Olivier Constant
 */
public class FeaturesViewer extends TableViewer {

From source file org.eclipse.emf.diffmerge.ui.viewers.ValuesViewer.java

/**
 * A viewer which provides a representation of the values of a feature on a match.
 * Input: ValuesViewer.ValuesInput ; Elements: [IValuePresence (if !showAllValues)] or
 * [[Object (if feature instanceof EAttribute)] or
 * [IMatch (if feature instanceof EReference)] (if showAllValues)].
 * @author Olivier Constant

From source file org.eclipse.emf.ecp.validation.filter.FilterTableViewer.java

/**
 * The filter table viewer.
 * 
 * @author Carmen Carlan
 */
public class FilterTableViewer extends TableViewer {

From source file org.eclipse.internal.cbmc.view.LoopsTableViewer.java

public class LoopsTableViewer extends TableViewer {

    LoopsViewerComparator comparator;
    private ObservableListContentProvider cp;

    public LoopsTableViewer(Composite parent) {

From source file org.eclipse.jdt.internal.debug.ui.launcher.RuntimeClasspathViewer.java

/**
 * A viewer that displays and manipulates runtime classpath entries.
 */
public class RuntimeClasspathViewer extends TableViewer implements IClasspathViewer {

    /**

From source file org.eclipse.jdt.internal.ui.callhierarchy.LocationViewer.java

class LocationViewer extends TableViewer {
    private final String columnHeaders[] = { CallHierarchyMessages.LocationViewer_ColumnIcon_header,
            CallHierarchyMessages.LocationViewer_ColumnLine_header,
            CallHierarchyMessages.LocationViewer_ColumnInfo_header };

    private ColumnLayoutData columnLayouts[] = { new ColumnPixelData(18, false, true), new ColumnWeightData(60),

From source file org.eclipse.jdt.internal.ui.viewsupport.ProblemTableViewer.java

/**
 * Extends a  TableViewer to allow more performance when showing error ticks.
 * A <code>ProblemItemMapper</code> is contained that maps all items in
 * the tree to underlying resource
 */
public class ProblemTableViewer extends TableViewer implements ResourceToItemsMapper.IContentViewerAccessor {