Package org.playframework.playclipse.handlers

Source Code of org.playframework.playclipse.handlers.RemoveNatureHandler

package org.playframework.playclipse.handlers;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.handlers.HandlerUtil;
import org.playframework.playclipse.FilesAccess;
import org.playframework.playclipse.builder.PlayNature;

public class RemoveNatureHandler extends AbstractHandler {

  private void removeNature(IProject project) {
    try {
      IProjectDescription description = project.getDescription();
      String[] natures = description.getNatureIds();

      for (int i = 0; i < natures.length; ++i) {
        if (PlayNature.NATURE_ID.equals(natures[i])) {
          // Remove the nature
          String[] newNatures = new String[natures.length - 1];
          System.arraycopy(natures, 0, newNatures, 0, i);
          System.arraycopy(natures, i + 1, newNatures, i, natures.length - i - 1);
          description.setNatureIds(newNatures);
          project.setDescription(description, null);
          return;
        }
      }
    } catch (CoreException e) {
      e.printStackTrace();
    }
  }

  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    IProject project = null;
    project = FilesAccess.getProjectFromMenuSelection(event);
    if (project != null)
      removeNature(project);
    else {
      IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindowChecked(event);
      MessageDialog.openError(window.getShell(), "PlayClipse", "Cannot find the project object.");
    }
    return null;
  }

}
TOP

Related Classes of org.playframework.playclipse.handlers.RemoveNatureHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.