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.eclipse.jdt.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.eclipse.jdt.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.eclipse.jst.j2ee.internal.ui.util.AnnotationIconDecorator.java

/**
 * Add overlay for annotated objects
 */
public class AnnotationIconDecorator extends LabelProvider implements ILightweightLabelDecorator {

    protected static final String ANNOTATION_IMAGE_DESC_STRING = "annotation_bean_overlay"; //$NON-NLS-1$

From source file org.eclipse.jst.j2ee.navigator.internal.J2EEProjectDecorator.java

/**
 * J2EEProjectDecorator
 */
public class J2EEProjectDecorator extends LabelProvider implements ILightweightLabelDecorator {

    private static ImageDescriptor EAR;

From source file org.eclipse.jst.jee.ui.internal.navigator.ejb.BeanDecorator.java

public class BeanDecorator extends LabelProvider implements ILightweightLabelDecorator {

    public void decorate(Object element, IDecoration decoration) {
        if (element instanceof BeanInterfaceNode) {
            BeanInterfaceNode beanInteraceNode = (BeanInterfaceNode) element;
            switch (beanInteraceNode.getKind()) {

From source file org.eclipse.jubula.client.teststyle.gui.decoration.DecoratorHandler.java

/**
 * Handles the decoration of INodePO Elements which contains an element that
 * violated a checkstyle rule.
 * 
 * @author marcell
 * 

From source file org.eclipse.jubula.client.teststyle.gui.decoration.GuiNodeDecoratorHandler.java

/**
 * @author marcell
 * @created Nov 4, 2010
 */
public class GuiNodeDecoratorHandler extends DecoratorHandler implements ILightweightLabelDecorator {

From source file org.eclipse.jubula.client.ui.provider.labelprovider.decorators.AbstractLightweightLabelDecorator.java

/**
 * @author BREDEX GmbH
 * @created May 10, 2011
 */
public abstract class AbstractLightweightLabelDecorator implements ILightweightLabelDecorator {
    /**

From source file org.eclipse.mdht.uml.ui.navigator.internal.StereotypeLightweightDecorator.java

public class StereotypeLightweightDecorator implements ILightweightLabelDecorator {

    public void decorate(Object object, IDecoration decoration) {
        Element element = null;
        if (object instanceof Element) {
            element = (Element) object;

From source file org.eclipse.mylyn.internal.context.ui.InterestDecoratorLightweight.java

/**
 * @author Mik Kersten
 */
public class InterestDecoratorLightweight implements ILightweightLabelDecorator {

    public InterestDecoratorLightweight() {