kieker.model.analysismodel.statistics.SimpleUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Kieker: Application Performance Monitoring and Dynamic Software Analysis
The newest version!
/**
*/
package kieker.model.analysismodel.statistics;
/**
*
* A representation of the model object 'Simple Unit'.
*
*
*
* The following features are supported:
*
*
* - {@link kieker.model.analysismodel.statistics.SimpleUnit#getPrefix Prefix}
*
*
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getSimpleUnit()
* @model
* @generated
*/
public interface SimpleUnit extends Unit {
/**
* Returns the value of the 'Prefix' attribute.
* The literals are from the enumeration {@link kieker.model.analysismodel.statistics.EPrefix}.
*
*
*
* @return the value of the 'Prefix' attribute.
* @see kieker.model.analysismodel.statistics.EPrefix
* @see #setPrefix(EPrefix)
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getSimpleUnit_Prefix()
* @model
* @generated
*/
EPrefix getPrefix();
/**
* Sets the value of the '{@link kieker.model.analysismodel.statistics.SimpleUnit#getPrefix Prefix}' attribute.
*
*
*
* @param value
* the new value of the 'Prefix' attribute.
* @see kieker.model.analysismodel.statistics.EPrefix
* @see #getPrefix()
* @generated
*/
void setPrefix(EPrefix value);
} // SimpleUnit