List of usage examples for org.eclipse.jface.viewers ILabelDecorator interface-usage
From source file com.nsand.gravity.internal.ImageIconDecorator.java
/**
* Decorator that replaces the default explorer icon with the actual
* resource image (if it's icon-sized).
*
* @author nsand
*
From source file com.piece_framework.makegood.includepath.decorators.SystemIncludePathLabelDecorator.java
public class SystemIncludePathLabelDecorator implements ILabelDecorator { @Override public String decorateText(String text, Object element) { if (!(element instanceof IncludePath)) return text; IncludePath includePath = (IncludePath) element;
From source file com.synflow.cx.ui.labeling.ProblemsLabelDecorator.java
/**
* This class defines a label decorator that doesn't do much at the moment.
*
* @author Matthieu Wipliez
*
*/
From source file com.twinsoft.convertigo.eclipse.views.projectexplorer.ViewLabelDecorator.java
class ViewLabelDecorator implements ILabelDecorator { public ViewLabelDecorator() { } public Image decorateImage(Image image, Object element) {
From source file com.twinsoft.convertigo.eclipse.views.schema.SchemaViewLabelDecorator.java
public class SchemaViewLabelDecorator implements ILabelDecorator { private static Map<String, Image> imagesCache = new HashMap<String, Image>(); public SchemaViewLabelDecorator() { }
From source file de.defmacro.dandelion.internal.ui.editor.LispOutlineLabelDecorator.java
/** * Der Dekorator fuer die Lisp-Outline. * @author Michael Bohn * */ public class LispOutlineLabelDecorator extends LabelProvider implements ILabelDecorator {
From source file de.defmacro.dandelion.internal.ui.LispResourceDecorator.java
/**
* Ein Dekorator der Bilder im Warnungs- oder
* Fehlerymbolen dekoriert.
* @author Michael Bohn
*
*/
From source file de.fkoeberle.autocommit.AutocommitIconDecorator.java
public class AutocommitIconDecorator extends LabelProvider implements ILabelDecorator { private final IAutoCommitEnabledStateListener listener; private final ImageDescriptor icon; public AutocommitIconDecorator() {
From source file de.itemis.eclipse.exportdecorator.PluginExportDecorator.java
/** * @author holger willebrandt - Initial contribution and API */ public class PluginExportDecorator implements ILabelDecorator /* IColorDecorator */ { private String currentProject;
From source file de.quamoco.qm.editor.util.LabelDecoratorBase.java
/**
* Base class for {@link ILabelDecorator} that provides implementation for
* registering and notifying listeners.
*
* @author herrmama
* @author $Author: lochmann $