Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ How do I create a label decorator declaratively?"

 
m
 
Line 1: Line 1:
The workbench provides the <tt>org.eclipse.ui.decorators</tt> extension point, for contributing label decorators.  These
+
The workbench provides the <tt>org.eclipse.ui.decorators</tt> extension point, for contributing label decorators.  These decorators can either be entirely declarative, or they can contribute an implementation of the interface called <tt>ILightweightLabelDecorator</tt> to perform the decoration.  The mechanics of implementing decorators are well described in the online Eclipse articles and in the platform documentation.
decorators can either be entirely declarative, or they can contribute an
+
implementation of the interface called <tt>ILightweightLabelDecorator</tt> to perform
+
the decoration.  The mechanics of implementing decorators
+
are well described in the online Eclipse articles and in the platform documentation.
+
 
+
  
 
== See Also: ==
 
== See Also: ==
 +
*[[FAQ What is a label decorator?]]
 +
*[[FAQ How do I add label decorations to my viewer?]]
 +
*Eclipse online article [http://www.eclipse.org/articles/Article-Decorators/decorators.html &#147;Understanding Decorators in Eclipse&#148;]
 +
*org.eclipse.ui.decorators (See '''Platform Plug-in Developer's Guide''')
  
[[FAQ_What_is_a_label_decorator%3F]]
+
{{Template:FAQ_Tagline}}
 
+
[[FAQ_How_do_I_add_label_decorations_to_my_viewer%3F]]
+
 
+
org.eclipse.ui.decorators (See '''Platform Plug-in Developer's Guide''')
+
 
+
Eclipse online article &#147;Understanding Decorators in Eclipse&#148;
+
 
+
org.eclipse.ui.decorators.
+
 
+
<hr><font size=-2>This FAQ was originally published in [http://www.eclipsefaq.org Official Eclipse 3.0 FAQs]. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License v1.0].</font>
+

Latest revision as of 01:14, 16 June 2006

The workbench provides the org.eclipse.ui.decorators extension point, for contributing label decorators. These decorators can either be entirely declarative, or they can contribute an implementation of the interface called ILightweightLabelDecorator to perform the decoration. The mechanics of implementing decorators are well described in the online Eclipse articles and in the platform documentation.

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top