blob: 380bf0513f8ca954e474055e3b0ed2a610a61b8a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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.core.runtime.CoreException;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaClasspathTab;
import org.eclipse.jdt.internal.debug.ui.launcher.IClasspathViewer;
import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants;
import org.eclipse.jdt.launching.JavaRuntime;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.actions.SelectionListenerAction;
/**
* Restores default entries in the runtime classpath.
*/
public class RestoreDefaultEntriesAction extends RuntimeClasspathAction {
private JavaClasspathTab fTab;
/**
* Constructor
* @param viewer the associated classpath viewer
* @param tab the tab the viewer resides in
*/
public RestoreDefaultEntriesAction(IClasspathViewer viewer, JavaClasspathTab tab) {
super(ActionMessages.RestoreDefaultEntriesAction_0, viewer);
fTab = tab;
}
/**
* Only does work if we are not currently using the default classpath
*
* @see org.eclipse.jface.action.Action#run()
*/
@Override
public void run() {
try {
ILaunchConfiguration config = fTab.getLaunchConfiguration();
if(!config.getAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_CLASSPATH, false)) {
ILaunchConfigurationWorkingCopy copy = null;
if(config.isWorkingCopy()) {
copy = (ILaunchConfigurationWorkingCopy) config;
}
else {
copy = config.getWorkingCopy();
}
copy.setAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_CLASSPATH, true);
getViewer().setEntries(JavaRuntime.computeUnresolvedRuntimeClasspath(copy));
}
if (!config.getAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_MODULE_CLI_OPTIONS, true)) {
ILaunchConfigurationWorkingCopy copy = null;
if (config.isWorkingCopy()) {
copy = (ILaunchConfigurationWorkingCopy) config;
} else {
copy = config.getWorkingCopy();
}
copy.setAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_MODULE_CLI_OPTIONS, true);
copy.setAttribute(IJavaLaunchConfigurationConstants.ATTR_MODULE_CLI_OPTIONS, ""); //$NON-NLS-1$
}
}
catch (CoreException e) {return;}
}
/**
* @see SelectionListenerAction#updateSelection(IStructuredSelection)
*/
@Override
protected boolean updateSelection(IStructuredSelection selection) {
return true;
}
}