Example usage for org.eclipse.jface.viewers ITableLabelProvider interface-usage

List of usage examples for org.eclipse.jface.viewers ITableLabelProvider interface-usage

Introduction

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

Usage

From source file at.rc.tacos.client.providers.SickPersonAdminTableLabelProvider.java

public class SickPersonAdminTableLabelProvider
        implements ITableLabelProvider, ITableColorProvider, ITransportStatus, IKindOfTransport {

    // define the columns
    public static final int COLUMN_IMAGE = 0;
    public static final int COLUMN_LASTNAME = 2;

From source file at.rc.tacos.client.providers.SickPersonLabelProvider.java

public class SickPersonLabelProvider implements ITableLabelProvider {

    String sickPerson;

    // define the columns
    public static final int COLUMN_LASTNAME = 0;

From source file at.rc.tacos.client.providers.SickPersonTableLabelProvider.java

public class SickPersonTableLabelProvider
        implements ITableLabelProvider, ITableColorProvider, ITransportStatus, IKindOfTransport {

    // define the columns
    public static final int COLUMN_LASTNAME = 0;
    public static final int COLUMN_FIRSTNAME = 1;

From source file at.rc.tacos.client.providers.UnderwayTransportsViewLabelProvider.java

public class UnderwayTransportsViewLabelProvider implements ITableLabelProvider, ITableColorProvider,
        ITransportStatus, IKindOfTransport, ITableFontProvider {

    // define the columns
    public static final int COLUMN_LOCK = 0;
    public static final int COLUMN_PRIORITY = 1;

From source file at.rc.tacos.client.providers.VehicleAssignLabelProvider.java

public class VehicleAssignLabelProvider implements ITableLabelProvider, ITableColorProvider, ITransportStatus {

    // define the columns
    public static final int COLUMN_STATION = 0;
    public static final int COLUMN_NAME = 1;
    public static final int COlUMN_TYPE = 2;

From source file at.rc.tacos.client.providers.VehicleViewTableDetailLabelProvider.java

public class VehicleViewTableDetailLabelProvider implements ITableLabelProvider, ITableColorProvider,
        ITransportStatus, IKindOfTransport, ITableFontProvider {

    // define the columns
    public static final int COLUMN_LOCK = 0;
    public static final int COLUMN_READY = 1;

From source file at.rc.tacos.client.providers.VehicleViewTableLabelProvider.java

public class VehicleViewTableLabelProvider implements ITableLabelProvider, ITableColorProvider, ITransportStatus,
        IKindOfTransport, ITableFontProvider {

    // define the columns
    public static final int COLUMN_LOCK = 0;
    public static final int COLUMN_NAME = 1;

From source file au.gov.ansto.bragg.kakadu.ui.views.DataSourceTableLabelProvider.java

/**
 * @author Danil Klimontov (dak)
 */
public class DataSourceTableLabelProvider implements ITableLabelProvider {
    private static final String NOT_DEFINED_ATTRIBUTE_VALUE = "<not defined>";
    protected static final int NAME_COLUMN_INDEX = 0;

From source file au.gov.ansto.bragg.kakadu.ui.widget.tree.DefaultTableLabelProvider.java

/**
 * Label provider class for TreeView widget.
 * Implements handling of <code>DefaultMutableTreeNode</code> object as a node data model class.
 * @author Danil Klimontov (dak)
 */
public class DefaultTableLabelProvider implements ITableLabelProvider {

From source file au.gov.ansto.bragg.quokka.ui.internal.DataSourceTableLabelProvider.java

/**
 * @author Danil Klimontov (dak)
 */
public class DataSourceTableLabelProvider implements ITableLabelProvider {
    private static final String NOT_DEFINED_ATTRIBUTE_VALUE = "<not defined>";
    private static final int NAME_COLUMN_INDEX = 0;