blob: 191933f9bb886bc9f4df9d9c410249ebb2b91dd2 [file] [log] [blame]
/**
* Copyright (c) 2014 CEA LIST.
*
* 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:
* Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
* Vincent Lorenzo (CEA-LIST) vincent.lorenzo@cea.fr - bug 496176
*
*/
package org.eclipse.papyrus.interoperability.common.MigrationParameters;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>URI Mapping</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.interoperability.common.MigrationParameters.URIMapping#getSourceURI <em>Source URI</em>}</li>
* <li>{@link org.eclipse.papyrus.interoperability.common.MigrationParameters.URIMapping#getTargetURI <em>Target URI</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.interoperability.common.MigrationParameters.MigrationParametersPackage#getURIMapping()
* @model
* @generated
*/
public interface URIMapping extends EObject {
/**
* Returns the value of the '<em><b>Source URI</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source URI</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Source URI</em>' attribute.
* @see #setSourceURI(String)
* @see org.eclipse.papyrus.interoperability.common.MigrationParameters.MigrationParametersPackage#getURIMapping_SourceURI()
* @model unique="false" dataType="org.eclipse.uml2.types.String" required="true" ordered="false"
* @generated
*/
String getSourceURI();
/**
* Sets the value of the '{@link org.eclipse.papyrus.interoperability.common.MigrationParameters.URIMapping#getSourceURI <em>Source URI</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source URI</em>' attribute.
* @see #getSourceURI()
* @generated
*/
void setSourceURI(String value);
/**
* Returns the value of the '<em><b>Target URI</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target URI</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Target URI</em>' attribute.
* @see #setTargetURI(String)
* @see org.eclipse.papyrus.interoperability.common.MigrationParameters.MigrationParametersPackage#getURIMapping_TargetURI()
* @model unique="false" dataType="org.eclipse.uml2.types.String" required="true" ordered="false"
* @generated
*/
String getTargetURI();
/**
* Sets the value of the '{@link org.eclipse.papyrus.interoperability.common.MigrationParameters.URIMapping#getTargetURI <em>Target URI</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target URI</em>' attribute.
* @see #getTargetURI()
* @generated
*/
void setTargetURI(String value);
} // URIMapping