/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as; /** * A mapping from an identifier to an EObject. * * @param <ReferenceType> the type of the reference this mapping points to. */ public interface IAsElementMapping<ReferenceType> extends org.reuseware.air.language.abstractsyntax.resource.as.IAsReferenceMapping<ReferenceType> { /** * Returns the target object the identifier is mapped to. */ public ReferenceType getTargetElement(); }