1 /******************************************************************************* 2 * Copyright (c) 2004, 2005 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 copy operations. A copy processor is 15 * responsible for actually copying elements to a shared clipboard. 16 * <p> 17 * This class should be subclassed by clients wishing to provide a special copy 18 * processor. 19 * </p> 20 * <p> 21 * The main purpose of this class is type safety for the generic copy 22 * refactoring 23 * </p> 24 * 25 * @since 3.1 26 */ 27 public abstract class CopyProcessor extends RefactoringProcessor { 28 29 } 30