%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

>


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