blob: 0bf06620fd5467ed9c5d7565842fa96f4ba95ba5 [file] [log] [blame]
/*
* Copyright (c) 2011 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.releng.tasks.table;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
/**
* @author Eike Stepper
*/
public class PerspectiveFactory implements IPerspectiveFactory
{
public void createInitialLayout(IPageLayout layout)
{
layout.setEditorAreaVisible(true);
layout.addView(TaskTableView.ID, IPageLayout.LEFT, .4f, layout.getEditorArea());
}
}