KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ltk > core > refactoring > participants > RenameProcessor


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ltk.core.refactoring.participants;
12
13 /**
14  * A special processor that performs rename operations. A rename processor is
15  * responsible for actually renaming the element. Additionally it may update
16  * other resources of the same domain which are affected by the rename
17  * operation. For example, a Java method rename processor also updates all
18  * references in Java code to the method to be renamed.
19  * <p>
20  * This class should be subclassed by clients wishing to provide a special rename
21  * processor.
22  * </p>
23  * <p>
24  * The main purpose of this class is type safety for the generic rename
25  * refactoring
26  * </p>
27  *
28  * @since 3.0
29  */

30 public abstract class RenameProcessor extends RefactoringProcessor {
31 }
32
Popular Tags