/******************************************************************************* * Copyright (c) 2006, 2009 Nokia 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: * Nokia - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.debug.ui.importexecutable; import org.eclipse.debug.core.ILaunchConfigurationType; import org.eclipse.swt.widgets.FileDialog; /** * Reference implementation of a wizard that imports executables. * Create your own version to import specific kinds of executables * with product specific messages and launch configuration types. * * */ public class ImportExecutableWizard extends AbstractImportExecutableWizard { public String getPageOneTitle() { return Messages.ImportExecutableWizard_pageOneTitle; } public String getPageOneDescription() { return Messages.ImportExecutableWizard_pageOneDescription; } public String getExecutableListLabel() { return Messages.ImportExecutableWizard_executableListLabel; } public void setupFileDialog(FileDialog dialog) { dialog.setText(Messages.ImportExecutableWizard_fileDialogTitle); } public boolean supportsConfigurationType(ILaunchConfigurationType type) { return true; } }