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.jboss.ide.eclipse.as.ui.views.server.extensions.ModulePublishDecorator.java

public class ModulePublishDecorator implements ILightweightLabelDecorator {

    public void addListener(ILabelProviderListener listener) {
    }

    public void dispose() {

From source file org.jboss.ide.eclipse.as.ui.views.server.extensions.XPathDecorator.java

public class XPathDecorator extends LabelProvider implements ILightweightLabelDecorator {
    public void decorate(Object element, IDecoration decoration) {
        String decoration2 = getDecoration(element);
        if (decoration2 != null) {
            decoration.addSuffix(decoration2);
        }

From source file org.jboss.tools.esb.project.ui.ESBProjectDecorator.java

public class ESBProjectDecorator extends LabelProvider implements ILightweightLabelDecorator {

    public void decorate(Object element, IDecoration decoration) {
        if (element instanceof IJavaProject) {
            element = ((IJavaProject) element).getProject();
        }

From source file org.jboss.tools.jmx.ui.internal.views.navigator.JMXConnectionDecorator.java

public class JMXConnectionDecorator extends LabelProvider implements ILightweightLabelDecorator {
    public void decorate(Object element, IDecoration decoration) {
        String decoration2 = getDecoration(element);
        if (decoration2 != null) {
            decoration.addSuffix(decoration2);
        }

From source file org.jboss.tools.modeshape.rest.views.ModeShapeContentProvider.java

/**
 * The <code>ModeShapeContentProvider</code> is a content and label provider for the repositories. This class <strong>MUST</strong>
 * be registered, and then unregistered, to receive server registry events.
 */
public final class ModeShapeContentProvider extends ColumnLabelProvider
        implements ILightweightLabelDecorator, IServerRegistryListener, ILazyTreeContentProvider {

From source file org.jboss.tools.smooks.configuration.validate.ValidateResultLabelDecorator.java

/**
 * @author Dart (dpeng@redhat.com)
 * 
 */
public class ValidateResultLabelDecorator extends LabelDecorator
        implements ILabelDecorator, ILightweightLabelDecorator {

From source file org.jlibrary.client.ui.repository.decorators.DecoratorNode.java

/**
 * @author Martin Perez
 *
 * This class is the repository tree decorator. It adds icons, prefixes and 
 * suffixes to the nodes in base of their current state.
 */

From source file org.kalypso.model.wspm.tuhh.ui.internal.gml.WspmBuildingDecorator.java

/**
 * @author Gernot Belger
 */
public class WspmBuildingDecorator implements ILightweightLabelDecorator {
    @Override
    public void dispose() {

From source file org.kalypso.model.wspm.tuhh.ui.internal.gml.WspmMarkerDecorator.java

/**
 * @author Gernot Belger
 */
public class WspmMarkerDecorator implements ILightweightLabelDecorator {
    @Override
    public void dispose() {

From source file org.kalypso.model.wspm.tuhh.ui.internal.gml.WspmReachNamesDecorator.java

public class WspmReachNamesDecorator implements ILightweightLabelDecorator {
    @Override
    public void dispose() {
    }

    @Override