/******************************************************************************* * 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.wst.jsdt.internal.corext.refactoring.changes; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.OperationCanceledException; import org.eclipse.ltk.core.refactoring.Change; import org.eclipse.wst.jsdt.core.IPackageFragment; import org.eclipse.wst.jsdt.core.IPackageFragmentRoot; import org.eclipse.wst.jsdt.core.JavaScriptModelException; import org.eclipse.wst.jsdt.internal.corext.refactoring.RefactoringCoreMessages; import org.eclipse.wst.jsdt.internal.corext.util.Messages; public class MovePackageChange extends PackageReorgChange { public MovePackageChange(IPackageFragment pack, IPackageFragmentRoot dest){ super(pack, dest, null); } protected Change doPerformReorg(IProgressMonitor pm) throws JavaScriptModelException, OperationCanceledException { getPackage().move(getDestination(), null, getNewName(), true, pm); return null; } public String getName() { return Messages.format(RefactoringCoreMessages.MovePackageChange_move, new String[]{getPackage().getElementName(), getDestination().getElementName()}); } }