blob: 2faff328905f22b6fb890ddc79cd3db59728b8e0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2017 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.internal.corext.buildpath;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.core.IScriptProject;
import org.eclipse.dltk.core.ISourceModule;
import org.eclipse.dltk.core.ModelException;
import org.eclipse.dltk.internal.corext.util.Messages;
import org.eclipse.dltk.internal.ui.wizards.NewWizardMessages;
import org.eclipse.dltk.internal.ui.wizards.buildpath.newsourcepage.DialogPackageExplorerActionGroup;
/**
* Operation to exclude objects of type <code>IModelElement</code>.
*
*/
public class ExcludeOperation extends BuildpathModifierOperation {
/**
* Constructor
*
* @param listener a <code>IBuildpathModifierListener</code> that is notified about
* changes on buildpath entries or <code>null</code> if no such notification is
* necessary.
* @param informationProvider a provider to offer information to the operation
*
* @see IBuildpathInformationProvider
* @see BuildpathModifier
*/
public ExcludeOperation(IBuildpathModifierListener listener, IBuildpathInformationProvider informationProvider) {
super(listener, informationProvider, NewWizardMessages.NewSourceContainerWorkbookPage_ToolBar_Exclude_tooltip, IBuildpathInformationProvider.EXCLUDE);
}
/**
* Method which runs the actions with a progress monitor.<br>
*
* This operation does not require any queries from the provider.
*
* @param monitor a progress monitor, can be <code>null</code>
*/
@Override
public void run(IProgressMonitor monitor) throws InvocationTargetException {
List result= null;
fException= null;
try {
List modelElements= getSelectedElements();
IScriptProject project= fInformationProvider.getScriptProject();
result= exclude(modelElements, project, monitor);
} catch (CoreException e) {
fException= e;
result= null;
}
super.handleResult(result, monitor);
}
/**
* Find out whether this operation can be executed on
* the provided list of elements.
*
* @param elements a list of elements
* @param types an array of types for each element, that is,
* the type at position 'i' belongs to the selected element
* at position 'i'
*
* @return <code>true</code> if the operation can be
* executed on the provided list of elements, <code>
* false</code> otherwise.
* @throws ModelException
*/
@Override
public boolean isValid(List elements, int[] types) throws ModelException {
if (elements.size() == 0)
return false;
for(int i= 0; i < elements.size(); i++) {
Object element= elements.get(i);
int type= types[i];
if (!(type == DialogPackageExplorerActionGroup.PACKAGE_FRAGMENT ||
type == DialogPackageExplorerActionGroup.INCLUDED_FOLDER ||
element instanceof ISourceModule))
return false;
}
return true;
}
/**
* Get a description for this operation. The description depends on
* the provided type parameter, which must be a constant of
* <code>DialogPackageExplorerActionGroup</code>. If the type is
* <code>DialogPackageExplorerActionGroup.MULTI</code>, then the
* description will be very general to describe the situation of
* all the different selected objects as good as possible.
*
* @param type the type of the selected object, must be a constant of
* <code>DialogPackageExplorerActionGroup</code>.
* @return a string describing the operation
*/
@Override
public String getDescription(int type) {
IModelElement elem= (IModelElement) getSelectedElements().get(0);
String name= escapeSpecialChars(elem.getElementName());
if (type == DialogPackageExplorerActionGroup.PACKAGE_FRAGMENT)
return Messages.format(NewWizardMessages.PackageExplorerActionGroup_FormText_ExcludePackage, name);
if (type == DialogPackageExplorerActionGroup.INCLUDED_FOLDER)
return Messages.format(NewWizardMessages.PackageExplorerActionGroup_FormText_ExcludePackage, name);
if (type == DialogPackageExplorerActionGroup.SOURCE_MODULE)
return Messages.format(NewWizardMessages.PackageExplorerActionGroup_FormText_ExcludeFile, name);
if (type == DialogPackageExplorerActionGroup.INCLUDED_FILE)
return Messages.format(NewWizardMessages.PackageExplorerActionGroup_FormText_ExcludeFile, name);
return NewWizardMessages.PackageExplorerActionGroup_FormText_Default_Exclude;
}
}