blob: a0c8708b5f8d39eb8baf4acc1784be27cd995e31 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.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 {
}