/******************************************************************************* * Copyright (c) 2000, 2008 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 delete operations. A delete processor is * responsible for actually deleting the elements. Additionally it may update * other resources of the same domain which are affected by the delete * operation. For example, a Java delete processor could also delete additional * Java elements which refer to the elements to be deleted. * <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 delete * refactoring * </p> * * @since 3.0 */ public abstract class DeleteProcessor extends RefactoringProcessor { }