blob: 4bd233feb38541f2d44c01a3d320e59fd19798b0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.tests.api;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
/**
* A layout that can trigger an problem interaction between
* {@link org.eclipse.ui.internal.presentations.util.PresentablePartFolder}
* and {@link org.eclipse.ui.internal.presentations.defaultpresentation.EmptyTabFolder}.
*
* @since 3.2
*/
public class PerspectiveViewsBug120934 implements IPerspectiveFactory {
public static final String PERSP_ID = "org.eclipse.ui.tests.api.PerspectiveViewsBug120934";
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IPerspectiveFactory#createInitialLayout(org.eclipse.ui.IPageLayout)
*/
public void createInitialLayout(IPageLayout layout) {
layout.addView(IPageLayout.ID_BOOKMARKS, IPageLayout.RIGHT, 0.25f,
IPageLayout.ID_EDITOR_AREA);
layout.addStandaloneView(IPageLayout.ID_OUTLINE, false,
IPageLayout.TOP, .3f, IPageLayout.ID_BOOKMARKS);
layout.setEditorAreaVisible(false);
}
}