blob: f4529bbc8d4e222522d27f437e50259ffecc5c49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.javascript.jdt.integration.ui;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.dltk.core.IScriptProjectFilenames;
import org.eclipse.dltk.javascript.core.JavaScriptNature;
import org.eclipse.dltk.utils.AdaptUtils;
import org.eclipse.dltk.utils.ResourceUtil;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IWorkbenchPart;
public class AddJsNatureAction implements IObjectActionDelegate {
private ISelection selection;
public AddJsNatureAction() {
}
private IWorkbenchPart workbenchPart;
public void setActivePart(IAction action, IWorkbenchPart targetPart) {
workbenchPart = targetPart;
}
public void run(IAction action) {
if (selection instanceof IStructuredSelection) {
IStructuredSelection ssel = (IStructuredSelection) selection;
Object[] array = ssel.toArray();
for (int a = 0; a < array.length; a++) {
final IProject project = AdaptUtils.getAdapter(array[a],
IProject.class);
if (project == null) {
continue;
}
try {
ResourceUtil.addNature(project, null,
JavaScriptNature.NATURE_ID);
IFile buildpathFile = project
.getFile(IScriptProjectFilenames.BUILDPATH_FILENAME);
if (!buildpathFile.exists()) {
buildpathFile.create(this.getClass()
.getResourceAsStream("buildpath.snap"), true,
null);
}
} catch (CoreException e) {
ErrorDialog
.openError(
workbenchPart.getSite().getShell(),
"Error adding JS nature",
e.toString(),
new Status(
IStatus.ERROR,
"org.eclipse.dltk.javascript.jdt.integration.ui",
e.getMessage(), e));
}
}
}
}
public void selectionChanged(IAction action, ISelection selection) {
this.selection = selection;
}
}