blob: d8d415025dbce424b122af8d7232bac65e8c95e8 [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 inline local variable 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 InlineLocalVariableDescriptor extends JavaRefactoringDescriptor {
/**
* Creates a new refactoring descriptor.
*/
public InlineLocalVariableDescriptor() {
super(IJavaRefactorings.INLINE_LOCAL_VARIABLE);
}
}