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 move operations. A move processor is 15 * responsible for actually moving the elements. Additionally it may update 16 * other resources of the same domain which are affected by the move operation. 17 * For example, a Java type move processor also updates all references in Java 18 * code to the type to be moved. 19 * <p> 20 * This class should be subclassed by clients wishing to provide a special move 21 * processor. 22 * </p> 23 * <p> 24 * The main purpose of this class is type safety for the generic move 25 * refactoring 26 * </p> 27 * 28 * @since 3.0 29 */ 30 public abstract class MoveProcessor extends RefactoringProcessor { 31 32 } 33