blob: defdf582b385a19726fa48b35eb36223e7f55b57 [file] [log] [blame]
package org.eclipse.ui;
/*
* Copyright (c) 2002,2003 IBM Corp. All rights reserved. This file is made
* available under the terms of the Common Public License v1.0 which accompanies
* this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.
* html
*/
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.viewers.*;
import org.eclipse.jface.viewers.ILabelDecorator;
import org.eclipse.jface.viewers.ILightweightLabelDecorator;
/**
* Manages the decorators contributed via the decorators extension point.
* Views which allow decoration of their elements should use the label
* decorator returned by <code>getLabelDecorator()</code>.This class is not
* intended to be implemented by clients.
*/
public interface IDecoratorManager {
/**
* Returns the label decorator which applies the decorations from all
* enabled decorators.
* Views which allow decoration of their elements should use this
* label decorator.
*
* @return the label decorator
* @see DecoratingLabelProvider
*/
ILabelDecorator getLabelDecorator();
/**
* Return the IBaseLabelProvider that corresponds to the
* decoratorId. This cab handle both lightweight and full
* decorators.
*
* @param decoratorId the decorator id
* @return the label provider
*/
IBaseLabelProvider getBaseLabelProvider(String decoratorId);
/**
* Returns the full label decorator instance for the specified decorator id
* if it is enabled. Otherwise returns <code>null</code>. Returns
* <code>null</code> for lightweight decorators. It is recommended that
* getBaseLabelProvider is used instead so that lightweight decorators are
* also checked.
*
* @param decoratorId the decorator id
* @return the label decorator
*/
ILabelDecorator getLabelDecorator(String decoratorId);
/**
* Returns the lightweight label decorator instance for the specified
* decorator id if it is enabled. Otherwise returns <code>null</code>.
* Returns <code>null</code> for heavyweight decorators.
* Use <code>getLabelDecorator</code> instead for heavyweight
* decorators.
*
* @param decoratorId the decorator id
* @return the lightweight label decorator
* @deprecated use getBaseLabelProvider(String) instead.
*/
ILightweightLabelDecorator getLightweightLabelDecorator(String decoratorId);
/**
* Returns whether the specified decorator is enabled.
*
* @param decoratorId the decorator id
* @return <code>true</code> if the decorator is enabled, or
* <code>false</code> if not
*/
boolean getEnabled(String decoratorId);
/**
* Sets whether the specified decorator is enabled.
*
* @param decoratorId the decorator id
* @param enabled <code>true</code> to enable the decorator, or
* <code>false</code> to disable it
* @throws CoreException if the decorator cannot be instantiated
*/
void setEnabled(String decoratorId, boolean enabled) throws CoreException;
/**
* Fire a LabelProviderChangedEvent for the decorator that corresponds to
* decoratorID if it exists and is enabled using the IBaseLabelProvider
* as the argument to the event. Otherwise do nothing.
*
* @param decoratorId the decorator id
*/
void update(String decoratorId);
}