Index: IRefactoringProcessorIds.java =================================================================== RCS file: /home/eclipse/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/refactoring/IRefactoringProcessorIds.java,v retrieving revision 1.13 diff -u -r1.13 IRefactoringProcessorIds.java --- IRefactoringProcessorIds.java 12 Apr 2005 14:08:07 -0000 1.13 +++ IRefactoringProcessorIds.java 4 May 2005 13:22:28 -0000 @@ -10,12 +10,6 @@ *******************************************************************************/ package org.eclipse.jdt.ui.refactoring; -import org.eclipse.core.runtime.IProgressMonitor; - -import org.eclipse.core.resources.IResourceVisitor; -import org.eclipse.core.resources.mapping.ResourceMapping; -import org.eclipse.core.resources.mapping.ResourceMappingContext; - import org.eclipse.jdt.internal.corext.refactoring.rename.RenameCompilationUnitProcessor; import org.eclipse.jdt.internal.corext.refactoring.rename.RenameEnumConstProcessor; import org.eclipse.jdt.internal.corext.refactoring.rename.RenameFieldProcessor; @@ -221,33 +215,4 @@ */ public static String DELETE_PROCESSOR= JavaDeleteProcessor.IDENTIFIER; - /** - * Processor ID of the copy processor (value "org.eclipse.jdt.ui.CopyProcessor"). - * - * The copy processor is used when copying elements via drag and drop or when pasting - * elements from the clipboard. The copy processor loads the following participants, - * depending on the type of the element that gets copied: - * - *

- * Use the method {@link ResourceMapping#accept(ResourceMappingContext context, IResourceVisitor visitor, IProgressMonitor monitor)} - * to enumerate the resources which form the Java element. ResourceMappingContext.LOCAL_CONTEXT - * should be use as the ResourceMappingContext passed to the accept methdod. - *

- * @see org.eclipse.core.resources.mapping.ResourceMapping - * @since 3.1 - */ - public static String COPY_PROCESSOR= "org.eclipse.jdt.ui.CopyProcessor"; //$NON-NLS-1$ }