blob: 244579681fbb067e2895e479799808c8c67b4bd7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.project.facet;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jem.util.emf.workbench.ProjectUtilities;
import org.eclipse.wst.common.componentcore.internal.StructureEdit;
import org.eclipse.wst.common.componentcore.internal.util.IModuleConstants;
import org.eclipse.wst.common.project.facet.core.IDelegate;
import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
public class SimpleWebFacetUninstallDelegate implements IDelegate {
public SimpleWebFacetUninstallDelegate() {
super();
}
public void execute(IProject project, IProjectFacetVersion fv, Object config, IProgressMonitor monitor) throws CoreException {
if (monitor != null)
monitor.beginTask("", 1); //$NON-NLS-1$
try {
// Remove the .component file
IFile file = project.getFile(StructureEdit.MODULE_META_FILE_NAME);
file.delete(true, monitor);
// Remove the module core nature
ProjectUtilities.removeNatureFromProject(project, IModuleConstants.MODULE_NATURE_ID);
} finally {
if (monitor != null)
monitor.done();
}
}
}