Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/corext/refactoring/IRefactoringProcessor.java')
-rw-r--r--core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/corext/refactoring/IRefactoringProcessor.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/corext/refactoring/IRefactoringProcessor.java b/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/corext/refactoring/IRefactoringProcessor.java
deleted file mode 100644
index 34e85834ffb..00000000000
--- a/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/corext/refactoring/IRefactoringProcessor.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2004 Rational Software Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * IBM Rational Software - Initial API and implementation
-***********************************************************************/
-package org.eclipse.cdt.internal.corext.refactoring;
-
-import org.eclipse.cdt.internal.corext.refactoring.base.IChange;
-import org.eclipse.cdt.internal.corext.refactoring.base.RefactoringStatus;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IAdaptable;
-import org.eclipse.core.runtime.IProgressMonitor;
-
-
-public interface IRefactoringProcessor extends IAdaptable {
-
- public void initialize(Object[] elements) throws CoreException;
-
- public boolean isAvailable() throws CoreException;
-
- public String getProcessorName();
-
- public int getStyle();
-
-// public IProject[] getAffectedProjects() throws CoreException;
-
- public Object[] getElements();
-
- public Object[] getDerivedElements() throws CoreException;
-
-// public IResourceModifications getResourceModifications() throws CoreException;
-
- public RefactoringStatus checkActivation() throws CoreException;
-
- public RefactoringStatus checkInput(IProgressMonitor pm) throws CoreException;
-
- public IChange createChange(IProgressMonitor pm) throws CoreException;
-}

Back to the top