Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/MultiStateCompilationUnitChange.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/MultiStateCompilationUnitChange.java89
1 files changed, 0 insertions, 89 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/MultiStateCompilationUnitChange.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/MultiStateCompilationUnitChange.java
deleted file mode 100644
index 592d09b4..00000000
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/changes/MultiStateCompilationUnitChange.java
+++ /dev/null
@@ -1,89 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 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.IFile;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.ltk.core.refactoring.MultiStateTextFileChange;
-import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
-import org.eclipse.wst.jsdt.internal.corext.refactoring.RefactoringCoreMessages;
-import org.eclipse.wst.jsdt.internal.corext.util.Messages;
-
-/**
- * Multi state compilation unit change for composite refactorings.
- *
- *
- */
-public final class MultiStateCompilationUnitChange extends MultiStateTextFileChange {
-
- /** The compilation unit */
- private final IJavaScriptUnit fUnit;
-
- /**
- * Creates a new multi state compilation unit change.
- *
- * @param name
- * the name of the change
- * @param unit
- * the compilation unit
- */
- public MultiStateCompilationUnitChange(final String name, final IJavaScriptUnit unit) {
- super(name, (IFile) unit.getResource());
-
- fUnit= unit;
-
- setTextType("js"); //$NON-NLS-1$
- }
-
- /*
- * @see org.eclipse.ltk.core.refactoring.Change#getAdapter(java.lang.Class)
- */
- public final Object getAdapter(final Class adapter) {
-
- if (IJavaScriptUnit.class.equals(adapter))
- return fUnit;
-
- return super.getAdapter(adapter);
- }
-
- /**
- * Returns the compilation unit.
- *
- * @return the compilation unit
- */
- public final IJavaScriptUnit getCompilationUnit() {
- return fUnit;
- }
-
- /**
- * {@inheritDoc}
- */
- public String getName() {
- return Messages.format(RefactoringCoreMessages.MultiStateCompilationUnitChange_name_pattern, new String[] { fUnit.getElementName(), getPath(fUnit.getResource()) });
- }
-
- /**
- * Returns the path of the resource to display.
- *
- * @param resource
- * the resource
- * @return the path
- */
- private String getPath(IResource resource) {
- final StringBuffer buffer= new StringBuffer(resource.getProject().getName());
- final String path= resource.getParent().getProjectRelativePath().toString();
- if (path.length() > 0) {
- buffer.append('/');
- buffer.append(path);
- }
- return buffer.toString();
- }
-}

Back to the top