blob: 4602f238b55deda0fec616606bd34ddd2c1afa70 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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;
import org.eclipse.core.runtime.Assert;
/**
* A generic rename refactoring. The actual refactoring is done
* by the rename processor passed to the constructor.
* <p>
* This class is not intended to be subclassed by clients.
* </p>
*
* @since 3.0
*/
public class RenameRefactoring extends ProcessorBasedRefactoring {
private RenameProcessor fProcessor;
/**
* Creates a new rename refactoring with the given rename processor.
*
* @param processor the rename processor
*/
public RenameRefactoring(RenameProcessor processor) {
super(processor);
Assert.isNotNull(processor);
fProcessor= processor;
}
/**
* {@inheritDoc}
*/
public RefactoringProcessor getProcessor() {
return fProcessor;
}
}