kieker.model.analysismodel.execution.StorageDataflow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kieker Show documentation
Show all versions of kieker Show documentation
Kieker: Application Performance Monitoring and Dynamic Software Analysis
/**
*/
package kieker.model.analysismodel.execution;
import org.eclipse.emf.ecore.EObject;
import kieker.model.analysismodel.deployment.DeployedOperation;
import kieker.model.analysismodel.deployment.DeployedStorage;
/**
*
* A representation of the model object 'Storage Dataflow'.
*
*
*
* The following features are supported:
*
*
* - {@link kieker.model.analysismodel.execution.StorageDataflow#getStorage Storage}
* - {@link kieker.model.analysismodel.execution.StorageDataflow#getCode Code}
* - {@link kieker.model.analysismodel.execution.StorageDataflow#getDirection Direction}
*
*
* @see kieker.model.analysismodel.execution.ExecutionPackage#getStorageDataflow()
* @model
* @generated
*/
public interface StorageDataflow extends EObject {
/**
* Returns the value of the 'Storage' reference.
*
*
*
* @return the value of the 'Storage' reference.
* @see #setStorage(DeployedStorage)
* @see kieker.model.analysismodel.execution.ExecutionPackage#getStorageDataflow_Storage()
* @model
* @generated
*/
DeployedStorage getStorage();
/**
* Sets the value of the '{@link kieker.model.analysismodel.execution.StorageDataflow#getStorage Storage}' reference.
*
*
*
* @param value
* the new value of the 'Storage' reference.
* @see #getStorage()
* @generated
*/
void setStorage(DeployedStorage value);
/**
* Returns the value of the 'Code' reference.
*
*
*
* @return the value of the 'Code' reference.
* @see #setCode(DeployedOperation)
* @see kieker.model.analysismodel.execution.ExecutionPackage#getStorageDataflow_Code()
* @model
* @generated
*/
DeployedOperation getCode();
/**
* Sets the value of the '{@link kieker.model.analysismodel.execution.StorageDataflow#getCode Code}' reference.
*
*
*
* @param value
* the new value of the 'Code' reference.
* @see #getCode()
* @generated
*/
void setCode(DeployedOperation value);
/**
* Returns the value of the 'Direction' attribute.
* The literals are from the enumeration {@link kieker.model.analysismodel.execution.EDirection}.
*
*
*
* @return the value of the 'Direction' attribute.
* @see kieker.model.analysismodel.execution.EDirection
* @see #setDirection(EDirection)
* @see kieker.model.analysismodel.execution.ExecutionPackage#getStorageDataflow_Direction()
* @model
* @generated
*/
EDirection getDirection();
/**
* Sets the value of the '{@link kieker.model.analysismodel.execution.StorageDataflow#getDirection Direction}' attribute.
*
*
*
* @param value
* the new value of the 'Direction' attribute.
* @see kieker.model.analysismodel.execution.EDirection
* @see #getDirection()
* @generated
*/
void setDirection(EDirection value);
} // StorageDataflow
© 2015 - 2024 Weber Informatics LLC | Privacy Policy