blob: 31b0848d5d94113130db0367a7df26ce90701a10 [file] [log] [blame]
/**
* Copyright (c) 2006 IBM Corporation.
* 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 Implementation
*
*/
package org.eclipse.ptp.remotetools.preferences.ui;
import org.eclipse.jface.preference.*;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.ui.IWorkbenchPreferencePage;
import org.eclipse.ui.IWorkbench;
/**
*
* @author Ricardo M. Matinata
* @since 1.0
*/
public class AbstractBasicPreferencePage
extends PreferencePage
implements IWorkbenchPreferencePage {
public AbstractBasicPreferencePage() {
super();
noDefaultAndApplyButton();
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
*/
public void init(IWorkbench workbench) {
}
protected Control createContents(Composite parent) {
return parent;
}
}