Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/PackageFragmentRootReorgChange.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/PackageFragmentRootReorgChange.java141
1 files changed, 0 insertions, 141 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/PackageFragmentRootReorgChange.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/PackageFragmentRootReorgChange.java
deleted file mode 100644
index 3cc23f89..00000000
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/PackageFragmentRootReorgChange.java
+++ /dev/null
@@ -1,141 +0,0 @@
-/*******************************************************************************
- * 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.resources.IProject;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.resources.mapping.ResourceMapping;
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.core.runtime.OperationCanceledException;
-import org.eclipse.core.runtime.SubProgressMonitor;
-import org.eclipse.ltk.core.refactoring.Change;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.ltk.core.refactoring.participants.ReorgExecutionLog;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.core.IPackageFragmentRoot;
-import org.eclipse.wst.jsdt.core.JavaScriptCore;
-import org.eclipse.wst.jsdt.core.JavaScriptModelException;
-import org.eclipse.wst.jsdt.internal.corext.refactoring.base.JDTChange;
-import org.eclipse.wst.jsdt.internal.corext.refactoring.reorg.INewNameQuery;
-import org.eclipse.wst.jsdt.internal.corext.refactoring.reorg.IPackageFragmentRootManipulationQuery;
-import org.eclipse.wst.jsdt.internal.corext.refactoring.util.JavaElementUtil;
-import org.eclipse.wst.jsdt.internal.corext.util.JavaElementResourceMapping;
-
-abstract class PackageFragmentRootReorgChange extends JDTChange {
-
- private final String fRootHandle;
- private final IPath fDestinationPath;
- private final INewNameQuery fNewNameQuery;
- private final IPackageFragmentRootManipulationQuery fUpdateClasspathQuery;
-
- PackageFragmentRootReorgChange(IPackageFragmentRoot root, IProject destination, INewNameQuery newNameQuery,
- IPackageFragmentRootManipulationQuery updateClasspathQuery) {
- Assert.isTrue(! root.isExternal());
- fRootHandle= root.getHandleIdentifier();
- fDestinationPath= Utils.getResourcePath(destination);
- fNewNameQuery= newNameQuery;
- fUpdateClasspathQuery= updateClasspathQuery;
- }
-
- public RefactoringStatus isValid(IProgressMonitor pm) throws CoreException {
- // we already ask for confirmation of move read only
- // resources. Furthermore we don't do a validate
- // edit since move source folders doesn't change
- // an content
- return isValid(pm, NONE);
- }
-
- public final Change perform(IProgressMonitor pm) throws CoreException, OperationCanceledException {
- pm.beginTask(getName(), 2);
- try {
- String newName= getNewResourceName();
- IPackageFragmentRoot root= getRoot();
- ResourceMapping mapping= JavaElementResourceMapping.create(root);
- final Change result= doPerformReorg(getDestinationProjectPath().append(newName), new SubProgressMonitor(pm, 1));
- markAsExecuted(root, mapping);
- return result;
- } finally {
- pm.done();
- }
- }
-
- protected abstract Change doPerformReorg(IPath destinationPath, IProgressMonitor pm) throws JavaScriptModelException;
-
- public Object getModifiedElement() {
- return getRoot();
- }
-
- protected IPackageFragmentRoot getRoot(){
- return (IPackageFragmentRoot)JavaScriptCore.create(fRootHandle);
- }
-
- protected IPath getDestinationProjectPath(){
- return fDestinationPath;
- }
-
- protected IProject getDestinationProject(){
- return Utils.getProject(getDestinationProjectPath());
- }
-
- private String getNewResourceName() throws OperationCanceledException {
- if (fNewNameQuery == null)
- return getRoot().getElementName();
- String name= fNewNameQuery.getNewName();
- if (name == null)
- return getRoot().getElementName();
- return name;
- }
-
- protected int getUpdateModelFlags(boolean isCopy) throws JavaScriptModelException{
- final int destination= IPackageFragmentRoot.DESTINATION_PROJECT_INCLUDEPATH;
- final int replace= IPackageFragmentRoot.REPLACE;
- final int originating;
- final int otherProjects;
- if (isCopy){
- originating= 0; //ORIGINATING_PROJECT_INCLUDEPATH does not apply to copy
- otherProjects= 0;//OTHER_REFERRING_PROJECTS_INCLUDEPATH does not apply to copy
- } else{
- originating= IPackageFragmentRoot.ORIGINATING_PROJECT_INCLUDEPATH;
- otherProjects= IPackageFragmentRoot.OTHER_REFERRING_PROJECTS_INCLUDEPATH;
- }
-
- if (! JavaScriptCore.create(getDestinationProject()).exists())
- return replace | originating;
-
- if (fUpdateClasspathQuery == null)
- return replace | originating | destination;
-
- IJavaScriptProject[] referencingProjects= JavaElementUtil.getReferencingProjects(getRoot());
- if (referencingProjects.length <= 1)
- return replace | originating | destination;
-
- boolean updateOtherProjectsToo= fUpdateClasspathQuery.confirmManipulation(getRoot(), referencingProjects);
- if (updateOtherProjectsToo)
- return replace | originating | destination | otherProjects;
- else
- return replace | originating | destination;
- }
-
- protected int getResourceUpdateFlags(){
- return IResource.KEEP_HISTORY | IResource.SHALLOW;
- }
-
- private void markAsExecuted(IPackageFragmentRoot root, ResourceMapping mapping) {
- ReorgExecutionLog log= (ReorgExecutionLog)getAdapter(ReorgExecutionLog.class);
- if (log != null) {
- log.markAsProcessed(root);
- log.markAsProcessed(mapping);
- }
- }
-}

Back to the top