blob: cb19364cbbdd593806f2a32f879a6a274d5056f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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.wtp.releng.tools.component.ui.internal.wizard;
import org.eclipse.jface.wizard.IWizardPage;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
public class APIRefCompatibilityPage extends WizardPage implements IWizardPage
{
public APIRefCompatibilityPage()
{
super("");
}
public void createControl(Composite composite)
{
Composite parent = new Composite(composite, SWT.NONE);
GridLayout layout = new GridLayout();
layout.numColumns = 1;
parent.setLayout(layout);
parent.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
setControl(parent);
GridLayout gl = new GridLayout();
gl.numColumns = 1;
gl.marginHeight = 0;
gl.marginWidth = 0;
Label srcLabel = new Label(parent, SWT.NONE);
srcLabel.setText("Enter the location of your product");
}
}