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.jboss.tools.jst.web.ui.internal.css.dialog.selector.viewers.CSSSelectorTableViewer.java

/**
 * 
 * @author yzhishko
 * 
 */

From source file org.jlibrary.client.ui.list.ListViewer.java

/**
 *
 * @author Martn Prez
 *
 * Generic list. Support icon images
 */

From source file org.jvmmonitor.internal.ui.properties.StackTraceViewer.java

/**
 * The stack trace viewer.
 */
public class StackTraceViewer extends TableViewer {

    /** the open action */

From source file org.kalypso.contribs.eclipse.jface.viewers.DefaultTableViewer.java

/**
 * DefaultTableViewer handles common functionality that you wish you had when working with a TableViewer.
 *
 * @author Marc Schlienger
 * @deprecated Not maintained any more. Directly use {@link TableViewer} and use {@link ColumnViewerUtil} to easily
 *             create table columns instead.

From source file org.kalypso.ogc.gml.table.LayerTableViewer.java

/**
 * @todo TableCursor soll sich auch bewegen, wenn die Sortierung sich ndert
 * @author Gernot Belger
 */
public class LayerTableViewer extends TableViewer implements ICellModifier {
    private static final String PROPERTY_COLUMN_DESCRIPTOR = "columnDescriptor"; //$NON-NLS-1$

From source file org.mobicents.eclipslee.servicecreation.ui.table.EditableTableViewer.java

/**
 * @author cath
 * @author Vladimir Ralev
 */
public class EditableTableViewer extends TableViewer implements SelectionListener {

From source file org.multicore_association.shim.edit.gui.swt.viewer.ShimObjectTableViewer.java

/**
 * A TableViewer implementation for ShimObject.
 * 
 * @see org.multicore_association.shim.edit.gui.swt.ShimObjectColumnFormat
 * @see org.multicore_association.shim.edit.gui.swt.viewer.ShimObjectTableContentProvider
 * @see org.multicore_association.shim.edit.gui.swt.viewer.ShimObjectTableLabelProvider

From source file org.netxms.ui.eclipse.widgets.SortableTableViewer.java

/**
 * Implementation of TableViewer with column sorting support
 */
public class SortableTableViewer extends TableViewer {
    public static final int DEFAULT_STYLE = -1;

From source file org.pentaho.pms.ui.concept.editor.AvailSecurityOwnersTableViewer.java

public class AvailSecurityOwnersTableViewer extends TableViewer {

    static final int TYPE_COLUMN_ID = 0;

    static final int NAME_COLUMN_ID = 1;

From source file org.pentaho.pms.ui.concept.editor.SecurityTableViewer.java

public class SecurityTableViewer extends TableViewer {

    static final int TYPE_COLUMN_ID = 0;
    static final int NAME_COLUMN_ID = 1;

    class MyContentProvider implements IStructuredContentProvider {