blob: 55948c5d127a68eadb37269e0f722d0d28757602 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.jdt.core.refactoring.descriptors;
import org.eclipse.ltk.core.refactoring.RefactoringContribution;
import org.eclipse.ltk.core.refactoring.RefactoringCore;
import org.eclipse.jdt.core.refactoring.IJavaRefactorings;
/**
* Refactoring descriptor for the extract superclass refactoring.
* <p>
* An instance of this refactoring descriptor may be obtained by calling
* {@link RefactoringContribution#createDescriptor()} on a refactoring
* contribution requested by invoking
* {@link RefactoringCore#getRefactoringContribution(String)} with the
* appropriate refactoring id.
* </p>
* <p>
* Note: this class is not intended to be instantiated by clients.
* </p>
*
* @since 3.3
*/
public final class ExtractSuperclassDescriptor extends JavaRefactoringDescriptor {
/**
* Creates a new refactoring descriptor.
*/
public ExtractSuperclassDescriptor() {
super(IJavaRefactorings.EXTRACT_SUPERCLASS);
}
}