blob: 2d8b2c8f2301609854db7156d4bb66b5edd61898 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 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.jdt.ui.examples;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.jdt.testplugin.JavaTestPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IActionDelegate;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ltk.core.refactoring.CheckConditionsOperation;
import org.eclipse.ltk.core.refactoring.PerformRefactoringOperation;
import org.eclipse.ltk.core.refactoring.Refactoring;
import org.eclipse.ltk.core.refactoring.RefactoringContribution;
import org.eclipse.ltk.core.refactoring.RefactoringCore;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.eclipse.jdt.core.refactoring.IJavaRefactorings;
import org.eclipse.jdt.core.refactoring.descriptors.MoveDescriptor;
/** In plugin.xml:
<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
objectClass="org.eclipse.jdt.core.ICompilationUnit"
id="org.eclipse.jdt.ui.examples.TestMoveDescriptorAction">
<action
label="Move to default package (jdt.ui.tests)"
tooltip="Move to default package"
class="org.eclipse.jdt.ui.examples.TestMoveDescriptorAction"
menubarPath="TestMoveDescriptorAction"
enablesFor="1"
id="TestMoveDescriptorAction">
</action>
</objectContribution>
</extension>
*/
public class TestMoveDescriptorAction extends Action implements IActionDelegate {
private ICompilationUnit fCU;
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run(IAction action) {
try {
if (fCU != null) {
PlatformUI.getWorkbench().getProgressService().run(true, true, new IRunnableWithProgress() {
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
try {
performAction(monitor);
} catch (CoreException e) {
throw new InvocationTargetException(e);
}
}
});
}
} catch (Exception e) {
JavaTestPlugin.log(e);
}
}
private void performAction(IProgressMonitor monitor) throws CoreException {
IPackageFragmentRoot root= (IPackageFragmentRoot) fCU.getAncestor(IJavaElement.PACKAGE_FRAGMENT_ROOT);
RefactoringContribution refactoringContribution= RefactoringCore.getRefactoringContribution(IJavaRefactorings.MOVE);
RefactoringDescriptor desc= refactoringContribution.createDescriptor();
MoveDescriptor moveDes= (MoveDescriptor) desc;
moveDes.setComment("Moving cu");
moveDes.setDescription("Moving cu");
moveDes.setDestination(root.getPackageFragment(""));
moveDes.setProject(root.getJavaProject().getElementName());
moveDes.setMoveResources(new IFile[0], new IFolder[0], new ICompilationUnit[] { fCU });
moveDes.setUpdateReferences(true);
RefactoringStatus status= new RefactoringStatus();
Refactoring refactoring= moveDes.createRefactoring(status);
PerformRefactoringOperation op= new PerformRefactoringOperation(refactoring, CheckConditionsOperation.ALL_CONDITIONS);
op.run(monitor);
}
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection)
*/
public void selectionChanged(IAction action, ISelection selection) {
fCU= null;
if (selection instanceof IStructuredSelection) {
Object object= ((IStructuredSelection) selection).getFirstElement();
if (object instanceof ICompilationUnit) {
fCU= (ICompilationUnit) object;
}
}
}
}