
This package contains the interfaces and classes of the component customization infrastructure.
Components are Composites, containing one or more control, that behave as a uint. Dialogs and
wizards are written to contain one or more of these components, and can be made customizable such
that those components can be mutated in limited ways by third-parties, and third-party components
can be created and added to them via an extension point.

The extension point implementation would look like this:

	<extension point="com.ibm.rational.team.client.ui.component.CustomizableActions">
		<customizableAction
			dialog="this.is.qualification.MyDialog"
			action="this.is.qualification.MyDialogCustomizableAction">
		</customizableAction>
	</extension>


