All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kieker.model.analysismodel.execution.Invocation Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
/**
 */
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