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

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

Introduction

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

Usage

From source file org.robotframework.ide.eclipse.main.plugin.navigator.RobotValidationExcludedDecorator.java

public class RobotValidationExcludedDecorator implements ILightweightLabelDecorator {

    public static final String ID = "org.robotframework.red.decorator.resource.validationExcluded";

    @Override
    public void addListener(final ILabelProviderListener listener) {

From source file org.robotframework.ide.eclipse.main.plugin.navigator.RobotVersionDecorator.java

public class RobotVersionDecorator implements ILightweightLabelDecorator {

    @Override
    public void addListener(final ILabelProviderListener listener) {
        // nothing to do here
    }

From source file org.rubypeople.rdt.ui.OverrideIndicatorLabelDecorator.java

/**
 * LabelDecorator that decorates an method's image with override or implements overlays.
 * The viewer using this decorator is responsible for updating the images on element changes.
 * 
 * <p>
 * This class may be instantiated; it is not intended to be subclassed.

From source file org.rubypeople.rdt.ui.ProblemsLabelDecorator.java

/**
 * LabelDecorator that decorates an element's image with error and warning overlays that 
 * represent the severity of markers attached to the element's underlying resource. To see 
 * a problem decoration for a marker, the marker needs to be a subtype of <code>IMarker.PROBLEM</code>.
 * <p>
 * <b>Important</b>: Although this decorator implements ILightweightLabelDecorator, do not contribute this

From source file org.seasar.dblauncher.decorator.DBRunningDecorator.java

/**
 * @author taichi
 * 
 */
public class DBRunningDecorator extends LabelProvider implements ILightweightLabelDecorator {

From source file org.seasar.weblauncher.decorator.WebRunningDecorator.java

/**
 * @author taichi
 * 
 */
public class WebRunningDecorator extends LabelProvider implements ILightweightLabelDecorator {

From source file org.sonarlint.eclipse.ui.internal.server.ServerDecorator.java

public class ServerDecorator extends LabelProvider implements ILightweightLabelDecorator {

    static final String ID = "org.sonarlint.eclipse.ui.navigatorDecorator";

    @Override
    public void decorate(Object element, IDecoration decoration) {

From source file org.sonarlint.eclipse.ui.internal.SonarLintProjectDecorator.java

public class SonarLintProjectDecorator implements ILightweightLabelDecorator {

    public static final String ID = "org.sonarlint.eclipse.ui.sonarlintDecorator";

    private ListenerList fListeners;

From source file org.spearce.egit.ui.internal.decorators.GitLightweightDecorator.java

/**
 * Supplies annotations for displayed resources
 *
 * This decorator provides annotations to indicate the status of each resource
 * when compared to <code>HEAD</code>, as well as the index in the relevant
 * repository.

From source file org.spearce.egit.ui.internal.decorators.GitResourceDecorator.java

/**
 * Supplies annotations for displayed resources.
 * <p>
 * This decorator provides annotations to indicate the status of each resource
 * when compared to <code>HEAD</code> as well as the index in the relevant
 * repository.