blob: 060a962bf5944cc79bb83b62382cae56986ef365 [file] [log] [blame]
/*
* Copyright (c) 2014-2016 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.oomph.setup.ui;
import org.eclipse.oomph.ui.OomphDialog;
import org.eclipse.oomph.ui.OomphUIPlugin;
import org.eclipse.swt.widgets.Shell;
/**
* @author Eike Stepper
*/
public abstract class AbstractSetupDialog extends OomphDialog
{
public AbstractSetupDialog(Shell parentShell, String title, int width, int height, OomphUIPlugin plugin, boolean helpAvailable)
{
super(parentShell, title, width, height, plugin, helpAvailable);
}
@Override
protected String getImagePath()
{
return "install_wiz.png"; //$NON-NLS-1$
}
}