Class ModulePerspective
- All Implemented Interfaces:
org.eclipse.ui.IPerspectiveFactory
When a new page is created in the workbench a perspective is used to define the initial page layout. If this is a predefined perspective (based on an extension to the workbench's perspective extension point) an IPerspectiveFactory
is used to define the initial page layout.
The factory for the perspective is created and passed an IPageLayout
where views can be added. The default layout consists of the editor area with no additional views. Additional views are added to the layout using the editor area as the initial point of reference. The factory is used only briefly while a new page is created; then discarded.
In this implementation, the JavaPerspective in the JDT plugin is used as a base. The central access point for the Java UI plug-in is (id) "org.eclipse.jdt.ui".
- Author:
- Christopher Mindus
Field Summary
Constructor Summary
Method Summary
Modifier and TypeMethodDescriptionvoid
createInitialLayout
(org.eclipse.ui.IPageLayout layout) Creates the initial layout for a page.
Field Details
PERSPECTIVE_ID
The ID for this perspective.
Constructor Details
ModulePerspective
public ModulePerspective()
Method Details
createInitialLayout
public void createInitialLayout(org.eclipse.ui.IPageLayout layout) Creates the initial layout for a page.- Specified by:
createInitialLayout
in interfaceorg.eclipse.ui.IPerspectiveFactory
- Parameters:
layout
- The page layout.- See Also:
IPerspectiveFactory.createInitialLayout(org.eclipse.ui.IPageLayout)