org.contextmapper.dsl.contextMappingDSL.Relationship Maven / Gradle / Ivy
/**
* generated by Xtext 2.20.0
*/
package org.contextmapper.dsl.contextMappingDSL;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Relationship'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.dsl.contextMappingDSL.Relationship#getName Name}
* - {@link org.contextmapper.dsl.contextMappingDSL.Relationship#getImplementationTechnology Implementation Technology}
*
*
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getRelationship()
* @model
* @generated
*/
public interface Relationship extends EObject
{
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getRelationship_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.Relationship#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Implementation Technology' attribute.
*
*
* If the meaning of the 'Implementation Technology' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Implementation Technology' attribute.
* @see #setImplementationTechnology(String)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getRelationship_ImplementationTechnology()
* @model
* @generated
*/
String getImplementationTechnology();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.Relationship#getImplementationTechnology Implementation Technology}' attribute.
*
*
* @param value the new value of the 'Implementation Technology' attribute.
* @see #getImplementationTechnology()
* @generated
*/
void setImplementationTechnology(String value);
} // Relationship