/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as.mopp; /** * A basic implementation of the * org.reuseware.air.language.abstractsyntax.resource.as.IAsURIMapping interface * that can map identifiers to URIs. * * @param <ReferenceType> unused type parameter which is needed to implement * org.reuseware.air.language.abstractsyntax.resource.as.IAsURIMapping. */ public class AsURIMapping<ReferenceType> implements org.reuseware.air.language.abstractsyntax.resource.as.IAsURIMapping<ReferenceType> { private org.eclipse.emf.common.util.URI uri; private String identifier; private String warning; public AsURIMapping(String identifier, org.eclipse.emf.common.util.URI newIdentifier, String warning) { super(); this.uri = newIdentifier; this.identifier = identifier; this.warning = warning; } public org.eclipse.emf.common.util.URI getTargetIdentifier() { return uri; } public String getIdentifier() { return identifier; } public String getWarning() { return warning; } }