kieker.model.analysismodel.statistics.LongMeasurement 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
The newest version!
/**
*/
package kieker.model.analysismodel.statistics;
/**
*
* A representation of the model object 'Long Measurement'.
*
*
*
* The following features are supported:
*
*
* - {@link kieker.model.analysismodel.statistics.LongMeasurement#getValue Value}
*
*
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getLongMeasurement()
* @model
* @generated
*/
public interface LongMeasurement extends ScalarMeasurement {
/**
* Returns the value of the 'Value' attribute.
*
*
*
* @return the value of the 'Value' attribute.
* @see #setValue(long)
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getLongMeasurement_Value()
* @model
* @generated
*/
long getValue();
/**
* Sets the value of the '{@link kieker.model.analysismodel.statistics.LongMeasurement#getValue Value}' attribute.
*
*
*
* @param value
* the new value of the 'Value' attribute.
* @see #getValue()
* @generated
*/
void setValue(long value);
} // LongMeasurement
© 2015 - 2024 Weber Informatics LLC | Privacy Policy