List of usage examples for org.eclipse.jface.viewers ILightweightLabelDecorator interface-usage
From source file org.eclipse.mylyn.internal.sandbox.dev.InterestDebuggingDecorator.java
/** * @author Mik Kersten */ public class InterestDebuggingDecorator implements ILightweightLabelDecorator { public InterestDebuggingDecorator() {
From source file org.eclipse.mylyn.internal.tasks.ui.TaskLabelDecorator.java
/** * @author Mik Kersten */ public class TaskLabelDecorator implements ILightweightLabelDecorator { public void decorate(Object element, IDecoration decoration) {
From source file org.eclipse.mylyn.internal.team.ui.ContextChangeSetDecorator.java
/** * @author Mik Kersten */ public class ContextChangeSetDecorator implements ILightweightLabelDecorator { public void decorate(Object element, IDecoration decoration) {
From source file org.eclipse.n4js.ui.decorator.ProjectTypeLabelDecorator.java
/** * Lightweight label decorator for decorating N4JS projects based on their project type. */ public class ProjectTypeLabelDecorator implements ILightweightLabelDecorator { private static final Logger LOGGER = getLogger(ProjectTypeLabelDecorator.class);
From source file org.eclipse.objectteams.otdt.internal.ui.viewsupport.DummyDecorator.java
/**
* This class provides a dummy implementation for a lightweight label decorator.
* It is only provided so we can install a decorator extension that is configurable via the preferences.
* The actual work is done by the {@link ViewAdaptor}.
*
* @author stephan
From source file org.eclipse.papyrus.infra.onefile.providers.OneFileDecorator.java
/**
* This decorator computes decoration of related files
* for each decoration an intersection is made
* and the {@link IPapyrusFile} will have the same decoration of the set
*
* @author tfaure
From source file org.eclipse.pde.emfforms.internal.validation.EmfValidatorLabelDecorator.java
public class EmfValidatorLabelDecorator implements ILightweightLabelDecorator { /** * @see org.eclipse.jface.viewers.ILightweightLabelDecorator#decorate(java.lang.Object, * org.eclipse.jface.viewers.IDecoration) */
From source file org.eclipse.php.internal.ui.navigator.PHPNavigatorLabelDecorator.java
public class PHPNavigatorLabelDecorator implements ILightweightLabelDecorator { private LibraryFolderManager lfm = LibraryFolderManager.getInstance(); @Override public void decorate(Object element, IDecoration decoration) {
From source file org.eclipse.php.internal.ui.util.BuildpathIndicatorLabelDecorator.java
public class BuildpathIndicatorLabelDecorator implements ILightweightLabelDecorator { @Override public void decorate(Object element, IDecoration decoration) { ImageDescriptor overlay = getOverlay(element); if (overlay != null) {
From source file org.eclipse.php.ui.PHPLanguageLibraryDecorator.java
/**
* LabelDecorator that decorates PHP Language Library element with project PHP
* Version.
*
* @since 4.0
*