%ExtPoint.tweaklets
Identifier:
org.eclipse.ui.internalTweaklets
Since:
3.3
Description:
This internal extension point is not considered API. It is used to define tweaklets. A tweaklet is anything that can be used to tweak the look and feel of the Workbench.
Configuration Markup:
<!ELEMENT extension (tweaklet)*>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT tweaklet EMPTY>
<!ATTLIST tweaklet
id CDATA #REQUIRED
name CDATA #REQUIRED
description CDATA #IMPLIED
definition CDATA #IMPLIED
implementation CDATA #IMPLIED
icon CDATA #IMPLIED>
- id - a unique name that will be used to identify this tweaklet
- name - a translatable name that will be used in the UI for this tweaklet
- description - a translatable short description of this tweaklet, to be used in the UI
- definition - an identifier of the tweaklet definition in the workbench, typically a fully qualified type name
- implementation - an identifier of the tweaklet implementation provided by the extender, typically a fully qualified class name
- icon - a relative name of the icon that will
be associated with the tweaklet.
Examples:
The following is an example tweaklet:
<extension point="org.eclipse.ui.internalTweaklets">
<tweaklet
id="org.eclipse.ui.internal.tweaklets.ConcreteXYZTweaklet"
name="XYZ Tweaklet"
description="Short description of the tweak"
definition="org.eclipse.ui.internal.tweaklets.AbstractXYZTweaklet"
implementation="org.eclipse.ui.internal.tweaklets.ConcreteXYZTweaklet"
icon="icons/XYZ.gif"/>
</extension>
API Information:
Typically, although not required, the value of the definition attribute is the
fully qualified name of an abstract class or an interface defined by the
workbench, and the value of the implementation attribute is the
fully qualified name of a non-abstract class provided by the extending plug-in.
Supplied Implementation:
Tweaklet implementations can be found in the Eclipse Platform incubator.
Copyright (c) 2007 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html