org.contextmapper.dsl.contextMappingDSL.DomainPart 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 'Domain Part'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.dsl.contextMappingDSL.DomainPart#getName Name}
* - {@link org.contextmapper.dsl.contextMappingDSL.DomainPart#getDomainVisionStatement Domain Vision Statement}
*
*
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getDomainPart()
* @model
* @generated
*/
public interface DomainPart 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#getDomainPart_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.DomainPart#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Domain Vision Statement' attribute.
*
*
* If the meaning of the 'Domain Vision Statement' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Domain Vision Statement' attribute.
* @see #setDomainVisionStatement(String)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getDomainPart_DomainVisionStatement()
* @model
* @generated
*/
String getDomainVisionStatement();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.DomainPart#getDomainVisionStatement Domain Vision Statement}' attribute.
*
*
* @param value the new value of the 'Domain Vision Statement' attribute.
* @see #getDomainVisionStatement()
* @generated
*/
void setDomainVisionStatement(String value);
} // DomainPart