/******************************************************************************* * Copyright (c) 2015 Red Hat Inc. 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: * Alexander Kurtakov - initial API and implementation *******************************************************************************/ package org.eclipse.linuxtools.internal.rpm.ui; import org.eclipse.jface.preference.PreferencePage; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.ui.IWorkbench; import org.eclipse.ui.IWorkbenchPreferencePage; /** * Main RPM preference page to serve as handler for all RPM specific pages. * */ public class MainPage extends PreferencePage implements IWorkbenchPreferencePage { @Override public void init(IWorkbench workbench) { } @Override protected Control createContents(Composite parent) { return null; } }