blob: a1d2d35fc74e29e99747a70bae5f013d62c8c11e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui.actions;
import org.eclipse.debug.core.DebugException;
import org.eclipse.jdt.debug.core.IJavaType;
import org.eclipse.jdt.debug.core.IJavaValue;
import org.eclipse.jdt.debug.core.IJavaVariable;
import org.eclipse.jdt.internal.debug.ui.DetailFormatter;
import org.eclipse.jdt.internal.debug.ui.JavaDetailFormattersManager;
import org.eclipse.jdt.internal.debug.ui.display.JavaInspectExpression;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.IStructuredSelection;
public class RemoveDetailFormatterAction extends ObjectActionDelegate {
/**
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
@Override
public void run(IAction action) {
IStructuredSelection selection= getCurrentSelection();
if (selection == null || selection.size() != 1) {
return;
}
Object element= selection.getFirstElement();
IJavaType type;
try {
IJavaValue value;
if (element instanceof IJavaVariable) {
value = ((IJavaValue)((IJavaVariable) element).getValue());
} else if (element instanceof JavaInspectExpression) {
value = ((IJavaValue)((JavaInspectExpression) element).getValue());
} else {
return;
}
type= value.getJavaType();
} catch (DebugException e) {
return;
}
JavaDetailFormattersManager detailFormattersManager= JavaDetailFormattersManager.getDefault();
DetailFormatter detailFormatter= detailFormattersManager.getAssociatedDetailFormatter(type);
detailFormattersManager.removeAssociatedDetailFormatter(detailFormatter);
}
}