Presentation Factories

org.eclipse.ui.workbench.presentationFactories

3.0

This extension point is used to add presentation factories to the workbench. A presentation factory defines the overall look and feel of the workbench, including how views and editors are presented.

<!ELEMENT extension (factory*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT factory EMPTY>

<!ATTLIST factory

class CDATA #REQUIRED

id    CDATA #REQUIRED

name  CDATA #REQUIRED>


The following is an example of a presentationFactory extension:
  

<extension point=

"org.eclipse.ui.presentationFactories"

>

<factory class=

"org.eclipse.ui.workbench.ExampleWorkbenchPresentationFactory"

/>

</extension>

The class specified in the factory element must be a concrete subclass of org.eclipse.ui.presentations.AbstractPresentationFactory.

If a presentation factory is not specified or is missing then the implementation in org.eclipse.ui.presentations.WorkbenchPresentationFactory will be used.