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 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation
/******************************************************************************* * 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 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/
package org.eclipse.team.internal.core; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFolder; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IProjectDescription; import org.eclipse.core.resources.team.IMoveDeleteHook; import org.eclipse.core.resources.team.IResourceTree; import org.eclipse.core.runtime.IProgressMonitor;
Internal class which provides the default behavior for resource deletions and moves.
/** * Internal class which provides the default behavior for resource deletions and moves. * */
public class DefaultMoveDeleteHook implements IMoveDeleteHook { @Override public boolean deleteFile( IResourceTree tree, IFile file, int updateFlags, IProgressMonitor monitor) { return false; } @Override public boolean deleteFolder( IResourceTree tree, IFolder folder, int updateFlags, IProgressMonitor monitor) { return false; } @Override public boolean deleteProject( IResourceTree tree, IProject project, int updateFlags, IProgressMonitor monitor) { return false; } @Override public boolean moveFile( IResourceTree tree, IFile source, IFile destination, int updateFlags, IProgressMonitor monitor) { return false; } @Override public boolean moveFolder( IResourceTree tree, IFolder source, IFolder destination, int updateFlags, IProgressMonitor monitor) { return false; } @Override public boolean moveProject( IResourceTree tree, IProject source, IProjectDescription description, int updateFlags, IProgressMonitor monitor) { return false; } }