blob: 1654bd701afa0d67c490c6dd1b81555e8b17d656 [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.DetailFormatterDialog;
import org.eclipse.jdt.internal.debug.ui.JDIDebugUIPlugin;
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;
import org.eclipse.jface.window.Window;
public class NewDetailFormatterAction 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();
String typeName;
try {
IJavaType type;
if (element instanceof IJavaVariable) {
type = ((IJavaValue)((IJavaVariable) element).getValue()).getJavaType();
} else if (element instanceof JavaInspectExpression) {
type = ((IJavaValue)((JavaInspectExpression) element).getValue()).getJavaType();
} else {
return;
}
if (type == null) {
return;
}
typeName= type.getName();
} catch (DebugException e) {
return;
}
JavaDetailFormattersManager detailFormattersManager= JavaDetailFormattersManager.getDefault();
DetailFormatter detailFormatter= new DetailFormatter(typeName, "", true); //$NON-NLS-1$
if (new DetailFormatterDialog(JDIDebugUIPlugin.getActivePage().getWorkbenchWindow().getShell(), detailFormatter, null, true, false).open() == Window.OK) {
detailFormattersManager.setAssociatedDetailFormatter(detailFormatter);
}
}
}