blob: d7ef3f46aadaba2968d717680fffb820b3f45807 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ltk.core.refactoring.participants;
/**
* A special processor that performs rename operations. A rename processor is
* responsible for actually renaming the element. Additionally it may update
* other resources of the same domain which are affected by the rename
* operation. For example, a Java method rename processor also updates all
* references in Java code to the method to be renamed.
* <p>
* This class should be subclassed by clients wishing to provide a special delete
* processor.
* </p>
* <p>
* The main purpose of this class is type safety for the generic rename
* refactoring
* </p>
*
* @since 3.0
*/
public abstract class RenameProcessor extends RefactoringProcessor {
}