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 de.tobject.findbugs.decorators.ResourceBugCountDecorator.java

/**
 * A simple decorator which adds (in currently hardcoded way) bug counts to the
 * resources. There are 3 different decorators configured via plugin.xml
 * (project/folder/file), current implementation is the same for all.
 * 
 * @author Andrei

From source file descent.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 es.cv.gvcase.mdt.db.navigator.decorators.NavigatorLabelDecorator.java

/**
 * The Class NavigatorLabelDecorator.
 */
public class NavigatorLabelDecorator implements ILabelDecorator {

    /* (non-Javadoc)

From source file eu.numberfour.n4js.ui.workingsets.WorkingSetLabelProvider.java

/**
 * Label provider for working sets.
 */
public class WorkingSetLabelProvider extends LabelProvider implements IStyledLabelProvider, ILabelDecorator {

    /**

From source file ext.org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyLabelDecorator.java

/**
 * Label decorator that decorates an method's image with recursion overlays.
 * The viewer using this decorator is responsible for updating the images on element changes.
 */
public class CallHierarchyLabelDecorator implements ILabelDecorator {

From source file fede.workspace.tool.view.actions.delete.WCLabelDecorator.java

public class WCLabelDecorator extends SelfViewLabelProvider implements ILabelDecorator {
    private LocalResourceManager resourceManager = new LocalResourceManager(
            JFaceResources.getResources(PlatformUI.getWorkbench().getDisplay()));

    public Image decorateImage(Image image, Object element) {
        if (element instanceof IItemNode) {

From source file fr.imag.adele.cadse.cadseg.teamwork.ui.ErrorDecorator.java

public abstract class ErrorDecorator extends CadseLabelProvider implements ILabelDecorator {

    public ErrorDecorator() {
    }

    protected Image computeImage(Image image, String path) {

From source file fr.inria.atlanmod.neoemf.eclipse.ui.decorator.NeoDecorator.java

public class NeoDecorator extends LabelProvider implements ILabelDecorator {

    private static final String ICON_PATH = "icons/full/obj16/neoemf.png";

    @Override
    public Image decorateImage(Image image, Object element) {

From source file fr.obeo.dsl.debug.ide.ui.provider.DSLLabelDecorator.java

/**
 * A {@link ILabelDecorator} adding the breakpoint decorator.
 * 
 * @author <a href="mailto:yvan.lussaud@obeo.fr">Yvan Lussaud</a>
 */
public class DSLLabelDecorator extends BaseLabelProvider implements ILabelDecorator, IBreakpointListener {

From source file gov.nasa.ensemble.core.plan.advisor.provider.ActivityAdvisorLabelDecorator.java

public class ActivityAdvisorLabelDecorator implements ILabelDecorator {

    private static ImageDescriptor errorImageDescriptor = AbstractUIPlugin
            .imageDescriptorFromPlugin(Activator.PLUGIN_ID, "icons/badges/violation_badge.png");

    private static ImageDescriptor fixedImageDescriptor = AbstractUIPlugin