blob: 7b68d06eb090ab816f6bd77b7ad5ddf7d21689f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2018 SSI Schaefer and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* SSI Schaefer - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.groups;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.debug.core.IStatusHandler;
import org.eclipse.debug.internal.ui.DebugUIMessages;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.osgi.util.NLS;
import org.eclipse.ui.PlatformUI;
/**
* Handles the case where a launch configuration in a group cannot be launched
* in the requested mode.
*
* @since 3.12
*/
public class UnsupportedModeHandler implements IStatusHandler {
@Override
public Object handleStatus(IStatus status, Object source) throws CoreException {
if (source instanceof String[]) {
final String[] data = (String[]) source;
PlatformUI.getWorkbench().getDisplay()
.asyncExec(() -> MessageDialog.openError(
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
DebugUIMessages.GroupLaunch_Error,
NLS.bind(DebugUIMessages.GroupLaunch_Cannot_launch, data[0], data[1])));
}
return null;
}
}