blob: 28bd6dd286219e475e69c47fc241057b966cc542 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2008 The University of York.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.emc.simulink.common.dt;
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;
public class SimulinkCategoryPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
@Override
public void init(IWorkbench workbench) {}
@Override
protected Control createContents(Composite parent) {
return parent;
}
}