blob: 79d105f74fcc313293a4d1b156da1bcf85ff43fc [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.portfolio.file.resources;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.egf.core.producer.InvocationException;
import org.eclipse.egf.ftask.producer.context.ITaskProductionContext;
import org.eclipse.egf.ftask.producer.invocation.ITaskProduction;
/**
* @author Benoit Langlois
*
*/
public class RenameFileTask implements ITaskProduction {
public void preExecute(ITaskProductionContext productionContext,
IProgressMonitor monitor) throws InvocationException {
// Nothing to do
}
public void doExecute(ITaskProductionContext productionContext,
IProgressMonitor monitor) throws InvocationException {
String projectName = productionContext.getInputValue(FileConstants.PROJECT_NAME_CONTRACT, String.class);
String folder = productionContext.getInputValue(FileConstants.FOLDER_CONTRACT, String.class);
String fileName = productionContext.getInputValue(FileConstants.FILE_NAME_CONTRACT, String.class);
String newFolder = productionContext.getInputValue(FileConstants.NEW_FOLDER_CONTRACT, String.class);
String newFileName = productionContext.getInputValue(FileConstants.NEW_FILE_NAME_CONTRACT, String.class);
// Not implemented
// try {
// IFile file = FileUtil.getExistingFile(projectName, folder, fileName);
// if (file.exists()) {
// IFile newFile = FileUtil.getExistingFile(projectName, folder, newFileName);
// if (newFile.exists()) {
// newFile.delete(false, false, null);
// }
// ...
// }
// } catch (Exception e) {
// EGFFileResourcesActivator.getDefault().logError(e);
// }
}
public void postExecute(ITaskProductionContext productionContext,
IProgressMonitor monitor) throws InvocationException {
// Nothing to do
}
}