blob: 2f797e7bbddadd1a6b418cf96c97572e07341e46 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 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.propertyPages;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.ui.IWorkbenchPropertyPage;
import org.eclipse.ui.dialogs.PropertyPage;
public class TestPropertyPage extends PropertyPage implements
IWorkbenchPropertyPage {
public TestPropertyPage() {
//Create a new instance of the receiver
}
protected Control createContents(Composite parent) {
Label label = new Label(parent,SWT.NONE);
label.setText("Test page");
return label;
}
}