org.contextmapper.dsl.contextMappingDSL.ContextMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of context-mapper-dsl Show documentation
Show all versions of context-mapper-dsl Show documentation
Use the ContextMapper DSL in your standalone application.
/**
* generated by Xtext 2.20.0
*/
package org.contextmapper.dsl.contextMappingDSL;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Context Map'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getName Name}
* - {@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getType Type}
* - {@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getState State}
* - {@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getBoundedContexts Bounded Contexts}
* - {@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getRelationships Relationships}
*
*
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getContextMap()
* @model
* @generated
*/
public interface ContextMap 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#getContextMap_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Type' attribute.
* The literals are from the enumeration {@link org.contextmapper.dsl.contextMappingDSL.ContextMapType}.
*
*
* If the meaning of the 'Type' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' attribute.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMapType
* @see #setType(ContextMapType)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getContextMap_Type()
* @model
* @generated
*/
ContextMapType getType();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getType Type}' attribute.
*
*
* @param value the new value of the 'Type' attribute.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMapType
* @see #getType()
* @generated
*/
void setType(ContextMapType value);
/**
* Returns the value of the 'State' attribute.
* The literals are from the enumeration {@link org.contextmapper.dsl.contextMappingDSL.ContextMapState}.
*
*
* If the meaning of the 'State' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'State' attribute.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMapState
* @see #setState(ContextMapState)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getContextMap_State()
* @model
* @generated
*/
ContextMapState getState();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.ContextMap#getState State}' attribute.
*
*
* @param value the new value of the 'State' attribute.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMapState
* @see #getState()
* @generated
*/
void setState(ContextMapState value);
/**
* Returns the value of the 'Bounded Contexts' reference list.
* The list contents are of type {@link org.contextmapper.dsl.contextMappingDSL.BoundedContext}.
*
*
* If the meaning of the 'Bounded Contexts' reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Bounded Contexts' reference list.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getContextMap_BoundedContexts()
* @model
* @generated
*/
EList getBoundedContexts();
/**
* Returns the value of the 'Relationships' containment reference list.
* The list contents are of type {@link org.contextmapper.dsl.contextMappingDSL.Relationship}.
*
*
* If the meaning of the 'Relationships' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Relationships' containment reference list.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getContextMap_Relationships()
* @model containment="true"
* @generated
*/
EList getRelationships();
} // ContextMap