org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase Maven / Gradle / Ivy
/**
* generated by Xtext 2.21.0
*/
package org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Use Case'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#getDoc Doc}
* - {@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#getName Name}
* - {@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#isIsLatencyCritical Is Latency Critical}
* - {@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#getNanoentitiesRead Nanoentities Read}
* - {@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#getNanoentitiesWritten Nanoentities Written}
*
*
* @see org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.ServiceCutterConfigurationDSLPackage#getUseCase()
* @model
* @generated
*/
public interface UseCase extends EObject
{
/**
* Returns the value of the 'Doc' attribute.
*
*
* @return the value of the 'Doc' attribute.
* @see #setDoc(String)
* @see org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.ServiceCutterConfigurationDSLPackage#getUseCase_Doc()
* @model
* @generated
*/
String getDoc();
/**
* Sets the value of the '{@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#getDoc Doc}' attribute.
*
*
* @param value the new value of the 'Doc' attribute.
* @see #getDoc()
* @generated
*/
void setDoc(String value);
/**
* Returns the value of the 'Name' attribute.
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.ServiceCutterConfigurationDSLPackage#getUseCase_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Is Latency Critical' attribute.
*
*
* @return the value of the 'Is Latency Critical' attribute.
* @see #setIsLatencyCritical(boolean)
* @see org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.ServiceCutterConfigurationDSLPackage#getUseCase_IsLatencyCritical()
* @model
* @generated
*/
boolean isIsLatencyCritical();
/**
* Sets the value of the '{@link org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.UseCase#isIsLatencyCritical Is Latency Critical}' attribute.
*
*
* @param value the new value of the 'Is Latency Critical' attribute.
* @see #isIsLatencyCritical()
* @generated
*/
void setIsLatencyCritical(boolean value);
/**
* Returns the value of the 'Nanoentities Read' attribute list.
* The list contents are of type {@link java.lang.String}.
*
*
* @return the value of the 'Nanoentities Read' attribute list.
* @see org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.ServiceCutterConfigurationDSLPackage#getUseCase_NanoentitiesRead()
* @model unique="false"
* @generated
*/
EList getNanoentitiesRead();
/**
* Returns the value of the 'Nanoentities Written' attribute list.
* The list contents are of type {@link java.lang.String}.
*
*
* @return the value of the 'Nanoentities Written' attribute list.
* @see org.contextmapper.servicecutter.dsl.serviceCutterConfigurationDSL.ServiceCutterConfigurationDSLPackage#getUseCase_NanoentitiesWritten()
* @model unique="false"
* @generated
*/
EList getNanoentitiesWritten();
} // UseCase