kieker.model.analysismodel.execution.Invocation 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;
/**
*
* A representation of the model object 'Invocation'.
*
*
*
* The following features are supported:
*
*
* - {@link kieker.model.analysismodel.execution.Invocation#getCaller Caller}
* - {@link kieker.model.analysismodel.execution.Invocation#getCallee Callee}
*
*
* @see kieker.model.analysismodel.execution.ExecutionPackage#getInvocation()
* @model
* @generated
*/
public interface Invocation extends EObject {
/**
* Returns the value of the 'Caller' reference.
*
*
*
* @return the value of the 'Caller' reference.
* @see #setCaller(DeployedOperation)
* @see kieker.model.analysismodel.execution.ExecutionPackage#getInvocation_Caller()
* @model
* @generated
*/
DeployedOperation getCaller();
/**
* Sets the value of the '{@link kieker.model.analysismodel.execution.Invocation#getCaller Caller}' reference.
*
*
*
* @param value
* the new value of the 'Caller' reference.
* @see #getCaller()
* @generated
*/
void setCaller(DeployedOperation value);
/**
* Returns the value of the 'Callee' reference.
*
*
*
* @return the value of the 'Callee' reference.
* @see #setCallee(DeployedOperation)
* @see kieker.model.analysismodel.execution.ExecutionPackage#getInvocation_Callee()
* @model
* @generated
*/
DeployedOperation getCallee();
/**
* Sets the value of the '{@link kieker.model.analysismodel.execution.Invocation#getCallee Callee}' reference.
*
*
*
* @param value
* the new value of the 'Callee' reference.
* @see #getCallee()
* @generated
*/
void setCallee(DeployedOperation value);
} // Invocation
© 2015 - 2024 Weber Informatics LLC | Privacy Policy