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 com.google.gapid.widgets.VisibilityTrackingTableViewer.java

/**
 * A {@link TableViewer} that notifies bound {@link IContentProvider} and
 * {@link IBaseLabelProvider} of visibility changes if they also implement
 * the {@link Listener} interface.
 */
public class VisibilityTrackingTableViewer extends TableViewer {

From source file com.iw.plugins.spindle.ui.TableViewerWithToolTips.java

public class TableViewerWithToolTips extends TableViewer {

    private ToolTipHandler toolTipHandler;
    private IToolTipProvider tipProvider;

    /**

From source file com.javapathfinder.vjp.config.editors.PropertyViewer.java

/**
 * Helper class to help make the userdefinedproperties table and the
 * defaultproperties table uniform.
 * @author Saad Naji 
 */
public class PropertyViewer extends TableViewer {

From source file com.javapathfinder.vjp.verify.view.TraceTable.java

/**
 * The table used to display information about the thread trace generated by 
 * JPF during verification.
 * @author Sandro Badame
 * @author Saad Naji
 *

From source file com.mentor.nucleus.bp.ui.sem.viewers.SEMTableViewer.java

public class SEMTableViewer extends TableViewer {

    public SEMTableViewer(Composite parent, int style) {
        super(parent, style);
        getTable().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
        getTable().setHeaderVisible(true);

From source file com.netxforge.screens.editing.base.actions.TableViewerWithState.java

/**
 * The default StructuredViewer abstracts away the state of the selectionEvent.
 * Things like {@link SelectionEvent#stateMask } get lost.
 * 
 * @author Christophe Bouhier
 */

From source file com.nokia.carbide.cpp.internal.pi.button.ui.BupMapTableViewer.java

public class BupMapTableViewer extends TableViewer {
    // Set the table column property names
    private final String KEY_CODE_COLUMN = Messages.getString("BupMapTableViewer.keycode"); //$NON-NLS-1$
    private final String ENUM_COLUMN = Messages.getString("BupMapTableViewer.enum"); //$NON-NLS-1$
    private final String LABEL_COLUMN = Messages.getString("BupMapTableViewer.label"); //$NON-NLS-1$
    private static final FontRegistry fontRegistry = new FontRegistry();

From source file com.nokia.cpp.internal.api.utils.ui.RadioButtonTableViewer.java

/**
 * A TableViewer supporting embedded radio button controls.
 * The content provider should implement the IRadioButtonContentProvider
 * interface in order to tell the viewer which items have radio buttons
 * and which is the initially selected item.
 */

From source file com.nokia.s60tools.crashanalyser.ui.viewers.CrashAnalyserTableViewer.java

/**
 * Base table viewer for table viewers used in Crash Analyser project.
 * Providers tooltip functionality and settings for all table viewers. 
 *
 */
public class CrashAnalyserTableViewer extends TableViewer {

From source file com.nokia.tools.ui.dialog.FileTableViewer.java

public class FileTableViewer extends TableViewer {
    private IResourceSelectionPage.Adapter page;
    private IFileContentProvider contentProvider;

    /**
     * @param parent