org.contextmapper.dsl.contextMappingDSL.Subdomain Maven / Gradle / Ivy
/**
* generated by Xtext 2.20.0
*/
package org.contextmapper.dsl.contextMappingDSL;
import org.contextmapper.tactic.dsl.tacticdsl.Entity;
import org.contextmapper.tactic.dsl.tacticdsl.Service;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Subdomain'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.dsl.contextMappingDSL.Subdomain#getType Type}
* - {@link org.contextmapper.dsl.contextMappingDSL.Subdomain#getEntities Entities}
* - {@link org.contextmapper.dsl.contextMappingDSL.Subdomain#getServices Services}
*
*
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getSubdomain()
* @model
* @generated
*/
public interface Subdomain extends DomainPart
{
/**
* Returns the value of the 'Type' attribute.
* The literals are from the enumeration {@link org.contextmapper.dsl.contextMappingDSL.SubDomainType}.
*
*
* 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.SubDomainType
* @see #setType(SubDomainType)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getSubdomain_Type()
* @model
* @generated
*/
SubDomainType getType();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.Subdomain#getType Type}' attribute.
*
*
* @param value the new value of the 'Type' attribute.
* @see org.contextmapper.dsl.contextMappingDSL.SubDomainType
* @see #getType()
* @generated
*/
void setType(SubDomainType value);
/**
* Returns the value of the 'Entities' containment reference list.
* The list contents are of type {@link org.contextmapper.tactic.dsl.tacticdsl.Entity}.
*
*
* If the meaning of the 'Entities' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Entities' containment reference list.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getSubdomain_Entities()
* @model containment="true"
* @generated
*/
EList getEntities();
/**
* Returns the value of the 'Services' containment reference list.
* The list contents are of type {@link org.contextmapper.tactic.dsl.tacticdsl.Service}.
*
*
* If the meaning of the 'Services' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Services' containment reference list.
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getSubdomain_Services()
* @model containment="true"
* @generated
*/
EList getServices();
} // Subdomain