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

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

Introduction

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

Usage

From source file org.eclipse.emf.common.ui.viewer.IStyledLabelDecorator.java

/**
 * An extended {@link ILabelDecorator} to decorate a {@link StyledString}.
 * 
 * @author <a href="mailto:mikael.barbero@obeo.fr">Mikael Barbero</a>
 * @since 2.10
 */

From source file org.eclipse.emf.ecp.emfstore.internal.ui.decorator.ProjectEMFStoreBranchDecorator.java

/**
 * @author jfaltermeier
 *
 */
public class ProjectEMFStoreBranchDecorator implements ILabelDecorator, ESShareObserver {

From source file org.eclipse.emf.edit.ui.provider.DiagnosticDecorator.java

/**
 * A {@link ILabelDecorator label decorator} for associating {@link Diagnostic diagnostic} decorations with a {@link StructuredViewer structured viewer}'s content labels.
 *
 * @since 2.9
 */
public class DiagnosticDecorator extends CellLabelProvider implements ILabelDecorator {

From source file org.eclipse.emf.validation.debug.ui.view.SideBySideImageDecorator.java

public abstract class SideBySideImageDecorator extends LabelProvider implements ILabelDecorator {
    protected final int gap;

    public SideBySideImageDecorator(int gap) {
        this.gap = gap;
    }

From source file org.eclipse.epf.authoring.ui.providers.MethodElementLabelDecorator.java

/**
 * Label decorator for method element
 * 
 * @author Phong Nguyen Le
 * @since  1.0
 */

From source file org.eclipse.epf.authoring.ui.providers.ProblemsLabelDecorator.java

/**
 * Code taken from org.eclipse.jdt.ui.ProblemsLabelDecorator 
 *
 */
public class ProblemsLabelDecorator implements ILabelDecorator, ILightweightLabelDecorator {

From source file org.eclipse.equinox.jmx.internal.client.ui.contributionsview.BundleStatusLabelDecorator.java

/**
 * @since 1.0
 */
public class BundleStatusLabelDecorator implements ILabelDecorator {

    // don't worry about lazy-initialization as bundles are always in a state

From source file org.eclipse.handly.ui.viewer.CompositeLabelDecorator.java

/**
 * Composes multiple label decorators into one.
 */
public class CompositeLabelDecorator
        implements ILabelDecorator, IFontDecorator, IColorDecorator, IDelayedLabelDecorator {
    private ILabelDecorator[] decorators;

From source file org.eclipse.handly.ui.viewer.ProblemLabelDecorator.java

/**
 * Decorates an element's image with error and warning overlays.
 * Subclasses must implement {@link #computeProblemSeverity} method.
 */
public abstract class ProblemLabelDecorator implements ILabelDecorator {
    private ResourceManager resourceManager;

From source file org.eclipse.imp.editor.ProblemsLabelDecorator.java

/**
 * Decorates an image of a program element to indicate any related errors/warnings.
 * See org.eclipse.jdt.ui.ProblemsLabelDecorator for inspiration.
 * @author rfuhrer@watson.ibm.com
 */
public class ProblemsLabelDecorator implements ILabelDecorator {