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 de.walware.ecommons.ui.components.WaComboViewer.java

public class WaComboViewer extends TableViewer {

    private final WaCombo fCombo;

    public WaComboViewer(final WaCombo combo) {
        super(combo.getList());

From source file era.foss.typeeditor.common.AddDeleteTableViewer.java

/**
 * A TableViewer with Add and Delete buttons.
 * <p>
 * Integrates layout and a Composite for the button bar.
 * <p>
 * Actually, this should be a generic UI widget. But now it is not any more. A description field was added, which is

From source file eu.aniketos.wp1.ststool.commitments.view.part.CommitmentTable.java

public class CommitmentTable extends TableViewer {

    final static int FILTER_CREDITOR = 0;
    final static int FILTER_DEBTOR = 1;
    final static int FILTER_REQTYPE = 2;
    final static int FILTER_ACTORS = 3;

From source file eu.hydrologis.jgrass.geonotes.fieldbook.GeonotesListViewer.java

/**
 * List viewer of the geonotes fieldbook.
 * 
 * @author Andrea Antonello (www.hydrologis.com)
 */
public class GeonotesListViewer extends TableViewer implements ISelectionChangedListener {

From source file ext.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 ext.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 {

From source file gov.va.isaac.mdht.otf.ui.properties.OTFTableViewer.java

public abstract class OTFTableViewer extends TableViewer {
    private IContentProvider contentProvider = null;
    private ILabelProvider labelProvider = null;

    public OTFTableViewer(Table table) {
        super(table);

From source file it.eng.spagobi.meta.querybuilder.ui.shared.result.ResultTableViewer.java

/**
 * @author Alberto Ghedin (alberto.ghedin@eng.it)
 *
 */

public class ResultTableViewer extends TableViewer {

From source file net.karlmartens.ui.viewer.TimeSeriesTableViewer.java

public final class TimeSeriesTableViewer extends TableViewer {

    public enum ScrollDataMode {
        FOCUS_CELL, SELECTED_ROWS
    }

From source file net.mldonkey.g2gui.view.viewers.CustomTableViewer.java

/**
 *
 * CustomTableViewer
 *
 *
 * @version $Id: CustomTableViewer.java,v 1.5 2004/03/29 14:51:44 dek Exp $