blob: 157b1c63a2df7ecff630ddae37f739ee2a9f9d46 [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.launcher;
import org.eclipse.core.resources.IMarker;
import org.eclipse.jdt.internal.debug.ui.JDIDebugUIPlugin;
import org.eclipse.jdt.internal.debug.ui.jres.JREsPreferencePage;
import org.eclipse.ui.IMarkerResolution;
/**
* Quick fix to define a new system library (none were found).
*/
public class DefineSystemLibraryQuickFix implements IMarkerResolution {
public DefineSystemLibraryQuickFix() {
super();
}
/**
* @see org.eclipse.ui.IMarkerResolution#run(org.eclipse.core.resources.IMarker)
*/
@Override
public void run(IMarker marker) {
JDIDebugUIPlugin.showPreferencePage(JREsPreferencePage.ID);
}
/**
* @see org.eclipse.ui.IMarkerResolution#getLabel()
*/
@Override
public String getLabel() {
return LauncherMessages.DefineSystemLibraryQuickFix_Create_a_system_library_definition_2;
}
}