kieker.model.analysismodel.statistics.SIUnit 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 'SI Unit'.
*
*
*
* The following features are supported:
*
*
* - {@link kieker.model.analysismodel.statistics.SIUnit#getUnitType Unit Type}
*
*
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getSIUnit()
* @model
* @generated
*/
public interface SIUnit extends SimpleUnit {
/**
* Returns the value of the 'Unit Type' attribute.
* The literals are from the enumeration {@link kieker.model.analysismodel.statistics.ESIUnitType}.
*
*
*
* @return the value of the 'Unit Type' attribute.
* @see kieker.model.analysismodel.statistics.ESIUnitType
* @see #setUnitType(ESIUnitType)
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getSIUnit_UnitType()
* @model required="true"
* @generated
*/
ESIUnitType getUnitType();
/**
* Sets the value of the '{@link kieker.model.analysismodel.statistics.SIUnit#getUnitType Unit Type}' attribute.
*
*
*
* @param value
* the new value of the 'Unit Type' attribute.
* @see kieker.model.analysismodel.statistics.ESIUnitType
* @see #getUnitType()
* @generated
*/
void setUnitType(ESIUnitType value);
} // SIUnit