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

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

Introduction

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

Usage

From source file com.astra.ses.spell.gui.dialogs.controls.DictVariablesLabelProvider.java

/**
 * @author Rafael Chinchilla
 *
 */
public class DictVariablesLabelProvider extends LabelProvider implements ITableLabelProvider, ITableColorProvider {
    public DictVariablesLabelProvider() {

From source file com.astra.ses.spell.gui.dialogs.controls.ServerDirectoryTreeLabelProvider.java

/**
 * @author Rafael Chinchilla
 *
 */
public class ServerDirectoryTreeLabelProvider extends LabelProvider {
    private Image m_folderImg;

From source file com.astra.ses.spell.gui.model.callstack.CallstackLabelProvider.java

/******************************************************************************
 * Provides the labels and icons for the callstack tree.
 *****************************************************************************/
public class CallstackLabelProvider extends LabelProvider implements IColorProvider {
    /** Holds the image for procedure nodes */
    private Image m_imgProc;

From source file com.astra.ses.spell.gui.model.nav.ProcedureListLabelProvider.java

/***************************************************************************
 * Provider for the item labels and images of the tree view
 **************************************************************************/
public class ProcedureListLabelProvider extends LabelProvider {

    /***********************************************************************

From source file com.astra.ses.spell.gui.model.outline.OutlineLabelProvider.java

/******************************************************************************
 * Provides the labels and icons for the callstack tree.
 *****************************************************************************/
public class OutlineLabelProvider extends LabelProvider {

    /** Function image */

From source file com.astra.ses.spell.gui.model.stack.StackViewLabelProvider.java

public class StackViewLabelProvider extends LabelProvider {
    /***********************************************************************
     * Obtain the item label
     * 
     * @param obj The item text data
     * @return The label string

From source file com.astra.ses.spell.gui.presentation.code.controls.CodeViewerLabelProvider2.java

public class CodeViewerLabelProvider2 extends LabelProvider implements ITableLabelProvider {

    @Override
    public Image getColumnImage(Object element, int columnIndex) {
        // TODO Auto-generated method stub
        return null;

From source file com.astra.ses.spell.gui.replay.dialogs.execution.name.ExecutionSelectionLabelProviderName.java

public class ExecutionSelectionLabelProviderName extends LabelProvider implements ITableLabelProvider {
    private static final DateFormat s_dfMonth = new SimpleDateFormat("MMMMM");
    private static final DateFormat s_dfDay = new SimpleDateFormat("dd EEEEE");
    private static final DateFormat s_dfHour = new SimpleDateFormat("HH:mm:ss");

    private Image m_imgCog;

From source file com.astra.ses.spell.gui.replay.dialogs.execution.time.ExecutionSelectionLabelProviderTime.java

public class ExecutionSelectionLabelProviderTime extends LabelProvider implements ITableLabelProvider {
    private static final DateFormat s_dfMonth = new SimpleDateFormat("MMMMM");
    private static final DateFormat s_dfDay = new SimpleDateFormat("dd EEEEE");
    private static final DateFormat s_dfHour = new SimpleDateFormat("HH:mm:ss");

    private Image m_imgCog;

From source file com.astra.ses.spell.gui.shared.views.controls.SharedVariablesLabelProvider.java

/******************************************************************************
 * Provides the labels and icons for the shared variables view
 *****************************************************************************/
public class SharedVariablesLabelProvider extends LabelProvider implements ITableLabelProvider {
    /**************************************************************************
     * Constructor.