blob: 76476158a147e55bac2523d75fb60df5cc5fed80 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Mat Booth 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.sh.internal.ui.commands;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.dltk.sh.core.ShelledNature;
/**
* Implementation of the project handler that adds the ShellEd nature to a
* project.
*/
public class AddNature extends AbstractProjectHandler {
@Override
protected void fettleProject(IProject project) {
try {
// Get the project description
IProjectDescription description = project.getDescription();
String[] natures = description.getNatureIds();
// Add the nature to the list
String[] newNatures = new String[natures.length + 1];
System.arraycopy(natures, 0, newNatures, 0, natures.length);
newNatures[natures.length] = ShelledNature.SHELLED_NATURE;
// Set the project description
description.setNatureIds(newNatures);
project.setDescription(description, null);
} catch (CoreException e) {
e.printStackTrace();
}
}
}