KickJava   Java API By Example, From Geeks To Geeks.

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


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 delete operations. A delete processor is
15  * responsible for actually deleting the elements. Additionally it may update
16  * other resources of the same domain which are affected by the delete
17  * operation. For example, a Java delete processor could also delete additional
18  * Java elements which refer to the elements to be deleted.
19  * <p>
20  * This class should be subclassed by clients wishing to provide a special delete
21  * processor.
22  * </p>
23  * <p>
24  * The main purpose of this class is type safety for the generic delete
25  * refactoring
26  * </p>
27  *
28  * @since 3.0
29  */

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