List of usage examples for org.eclipse.jface.viewers ILightweightLabelDecorator interface-usage
From source file org.eclipse.ajdt.internal.ui.lazystart.AdviceImageDecorator.java
public class AdviceImageDecorator implements ILightweightLabelDecorator { private ListenerList fListeners; private IAdviceChangedListener fAdviceChangedListener;
From source file org.eclipse.andmore.internal.project.FolderDecorator.java
/** * A {@link ILabelDecorator} associated with an org.eclipse.ui.decorators extension. * This is used to add android icons in some special folders in the package explorer. */ public class FolderDecorator implements ILightweightLabelDecorator {
From source file org.eclipse.bpel.common.ui.ResourceMarkerDecorator.java
/**
* Lightweight icon decorator for error/warning/info icons in Navigator view
*
* @see https://jira.jboss.org/browse/JBIDE-6016
* @author Bob Brodt
* @date Nov 16, 2010
From source file org.eclipse.cdt.internal.ui.viewsupport.CustomBuildSettingsDecorator.java
/** * Determines if a file or folder got customized build settings and if so decorates with the "wrench" overlay. */ public class CustomBuildSettingsDecorator implements ILightweightLabelDecorator { @Override public void decorate(Object element, IDecoration decoration) {
From source file org.eclipse.cdt.internal.ui.viewsupport.ExcludedFileDecorator.java
/** * Determines if a file is excluded from a CDT build and if that is the case decorates the file's icon and * renders the label using the qualifier (gray) color. */ public class ExcludedFileDecorator implements ILightweightLabelDecorator { @Override
From source file org.eclipse.cdt.internal.ui.viewsupport.IncludeFolderDecorator.java
/** * Determines whether an include folder under "Includes" node does exist * and if not decorates the file's icon with warning overlay and * renders the label using the qualifier (gray) color. */ public class IncludeFolderDecorator implements ILightweightLabelDecorator {
From source file org.eclipse.cdt.internal.ui.viewsupport.IndexedFilesLabelProvider.java
/** * A label provider that marks all translation units that are currently part of the index. */ public class IndexedFilesLabelProvider implements ILightweightLabelDecorator { private static final ImageDescriptor INDEXED = AbstractUIPlugin.imageDescriptorFromPlugin(CUIPlugin.PLUGIN_ID, "$nl$/icons/ovr16/indexedFile.gif"); //$NON-NLS-1$
From source file org.eclipse.cdt.internal.ui.viewsupport.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}.
* <p>
* Note: Only images for elements in Java projects are currently updated on marker changes.
From source file org.eclipse.cft.server.ui.internal.CloudFoundryDecorator.java
/** * @author Christian Dupuis * @author Terry Denney * @author Steffen Pingel */ @SuppressWarnings("restriction")
From source file org.eclipse.datatools.connectivity.sqm.core.internal.ui.explorer.providers.decorators.impl.AbstractDecorationService.java
/** * @author ljulien */ public abstract class AbstractDecorationService extends LabelProvider implements ILightweightLabelDecorator { protected Map objectMap = new WeakHashMap();