Eclipse RCP: Remove tab folder from View

Veröffentlicht von

If you create a new RCP application a view gets a tab like this:

image

To remove the tab, use the “addStandaloneView” method in your perspective. Here is an example:

public class Perspective implements IPerspectiveFactory {
  public void createInitialLayout(IPageLayout layout) {       
    String editorArea = layout.getEditorArea();
    layout.setEditorAreaVisible(false);

    layout.addStandaloneView(View.ID, false, IPageLayout.LEFT, 1.0f, editorArea);       
  }
}

The result:

image

Kommentar hinterlassen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert