blob: cd437bfd24161eb733ad29d495c66c891b26f215 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.acceleo.aql.migration;
import org.eclipse.acceleo.model.mtl.Module;
/**
* Describes a component capable of resolving qualified name of modules given a module proxy.
*
* @author <a href="mailto:william.piers@obeo.fr">William Piers</a>
*/
public interface IModuleResolver {
/**
* Returns the qualified name of the given module, proxy or not.
*
* @param module
* the context module
* @param refModule
* the module to resolve
* @return the module qualified name
*/
String getQualifiedName(org.eclipse.acceleo.model.mtl.Module module, Module refModule);
}