org.contextmapper.dsl.contextMappingDSL.UseCase Maven / Gradle / Ivy
/**
* generated by Xtext 2.21.0
*/
package org.contextmapper.dsl.contextMappingDSL;
/**
*
* A representation of the model object 'Use Case'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.dsl.contextMappingDSL.UseCase#getScope Scope}
* - {@link org.contextmapper.dsl.contextMappingDSL.UseCase#getLevel Level}
*
*
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getUseCase()
* @model
* @generated
*/
public interface UseCase extends UserRequirement
{
/**
* Returns the value of the 'Scope' attribute.
*
*
* @return the value of the 'Scope' attribute.
* @see #setScope(String)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getUseCase_Scope()
* @model
* @generated
*/
String getScope();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.UseCase#getScope Scope}' attribute.
*
*
* @param value the new value of the 'Scope' attribute.
* @see #getScope()
* @generated
*/
void setScope(String value);
/**
* Returns the value of the 'Level' attribute.
*
*
* @return the value of the 'Level' attribute.
* @see #setLevel(String)
* @see org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage#getUseCase_Level()
* @model
* @generated
*/
String getLevel();
/**
* Sets the value of the '{@link org.contextmapper.dsl.contextMappingDSL.UseCase#getLevel Level}' attribute.
*
*
* @param value the new value of the 'Level' attribute.
* @see #getLevel()
* @generated
*/
void setLevel(String value);
} // UseCase