Reputation: 6531
I followed the Vogella RCP Tutorial and created an Application, lloking like that:
The "My View" was added explicitely to the perspective.
The Editor below was there on default.
Questions:
Upvotes: 1
Views: 730
Reputation: 7279
in your perspective
public void createInitialLayout(IPageLayout layout) {
this.layout = layout;
String editorAreaId = layout.getEditorArea();
layout.setEditorAreaVisible(false);
}
this should disable your editor
Upvotes: 6