blob: c215c8cf12617c7aa3b3811f9232a3fb1978d0c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.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 rename
* 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 {
}