/******************************************************************************* * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is 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: * Exadel, Inc. and Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.common.model.ui.action.file; import java.util.*; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.CoreException; import org.jboss.tools.common.model.ui.ModelUIPlugin; /** * * @deprecated use org.jboss.tools.common.model.ui.internal.handlers.RemoveModelNatureHandler * */ @Deprecated public class RemoveModelNatureActionDelegate extends ProjectRootActionDelegate { protected String getActionPath() { return "EclipseActions.RemoveModelNature"; //$NON-NLS-1$ } protected void initProperties(Properties p) { String nature = getModelNatureName(); if(nature != null) p.setProperty("nature", nature); //$NON-NLS-1$ } protected boolean hasModelNature(IProject project) { String nature = getModelNatureName(); if(nature == null) return super.hasModelNature(project); if(project == null || !project.isAccessible()) return false; try { if(project.hasNature(nature)) return true; } catch (CoreException e) { ModelUIPlugin.getPluginLog().logError(e); } return false; } protected String getModelNatureName() { return null; } }