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 com.vectrace.MercurialEclipse.history.FileStatusDecorator.java

public class FileStatusDecorator extends LabelProvider implements ILightweightLabelDecorator {

    public static final String ID = "com.vectrace.MercurialEclipse.history.FileStatusDecorator"; //$NON-NLS-1$

    @Override
    public void addListener(ILabelProviderListener listener) {

From source file com.vectrace.MercurialEclipse.team.ResourceDecorator.java

/**
 * @author zingo
 */
public class ResourceDecorator extends LabelProvider implements ILightweightLabelDecorator, Observer {
    private static final MercurialStatusCache STATUS_CACHE = MercurialStatusCache.getInstance();
    private static final IncomingChangesetCache INCOMING_CACHE = IncomingChangesetCache.getInstance();

From source file com.xored.af.ui.labels.EObjectDecorator.java

public abstract class EObjectDecorator extends LabelProvider implements ILightweightLabelDecorator {
    private class DiagnosticsListener implements IListChangeListener {

        public void handleListChange(final ListChangeEvent event) {
            final Set<Object> toUpdate = new HashSet<Object>();
            event.diff.accept(new ListDiffVisitor() {

From source file com.xored.af.ui.labels.ResourceDecorator.java

public class ResourceDecorator extends LabelProvider implements ILightweightLabelDecorator {

    public void decorate(Object element, IDecoration decoration) {
        if (element instanceof Resource) {
            final Resource resource = (Resource) element;
            if (!resource.getErrors().isEmpty()) {

From source file cz.modry.eclipse.coloredtabs.decorators.ProjectColorDecorator.java

/**
 * 
 * @author Michal Malohlava
 * 
 * @see ILightweightLabelDecorator
 */

From source file de.fuberlin.agcsw.heraclitus.svont.client.ui.SVoNtLightweightDecorator.java

public class SVoNtLightweightDecorator extends LabelProvider implements ILightweightLabelDecorator {

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

        if (element instanceof TreeNode) {

From source file de.fu_berlin.inf.dpp.ui.decorators.SharedProjectDecorator.java

/**
 * Decorates shared projects and their files.
 * 
 * @see ILightweightLabelDecorator
 * 
 * @author oezbek

From source file de.fu_berlin.inf.dpp.ui.decorators.SharedProjectFileDecorator.java

/**
 * Decorates project files and their parent folders belonging to the active
 * editors of the remote users.
 * 
 * @see ILightweightLabelDecorator
 */

From source file de.jcup.egradle.eclipse.decorators.EGradleProjectDecorator.java

/**
 * Dedicated decorator for projects only. Will only decorate subprojects inside
 * gradle root project folder and also the virtual project as well
 * 
 * @author Albert Tregnaghi
 *

From source file de.jcup.egradle.eclipse.ide.decorators.EGradleProjectDecorator.java

/**
 * Dedicated decorator for projects only. Will only decorate subprojects inside
 * gradle root project folder and also the virtual project as well
 * 
 * @author Albert Tregnaghi
 *