blob: 79c4beee818c53a11a28ac19fbc2f5076f88e4ba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Borland Software Corporation
*
* 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.ast.env;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EOperation;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.m2m.internal.qvt.oml.expressions.DictionaryType;
import org.eclipse.m2m.internal.qvt.oml.expressions.ListType;
import org.eclipse.ocl.TypeResolver;
public interface QVTOTypeResolver extends TypeResolver<EClassifier, EOperation, EStructuralFeature> {
ListType resolveListType(EClassifier elementType);
DictionaryType resolveDictionaryType(EClassifier keyType, EClassifier elementType);
}