blob: 7c0b758a51c86e53b298955c173bf8f6f5950736 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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.internal.ui.model;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptorProxy;
import org.eclipse.ltk.core.refactoring.model.AbstractRefactoringDescriptorResourceMapping;
/**
* Refactoring descriptor resource mapping for the Java model provider.
*
* @since 3.2
*/
public final class JavaRefactoringDescriptorResourceMapping extends AbstractRefactoringDescriptorResourceMapping {
/**
* Creates a new java refactoring descriptor resource mapping.
*
* @param descriptor
* the refactoring descriptor
*/
public JavaRefactoringDescriptorResourceMapping(final RefactoringDescriptorProxy descriptor) {
super(descriptor);
}
/**
* {@inheritDoc}
*/
public String getModelProviderId() {
return JavaModelProvider.JAVA_MODEL_PROVIDER_ID;
}
}