kieker.model.analysismodel.statistics.CustomUnit 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 'Custom Unit'.
*
*
*
* The following features are supported:
*
*
* - {@link kieker.model.analysismodel.statistics.CustomUnit#getName Name}
*
*
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getCustomUnit()
* @model
* @generated
*/
public interface CustomUnit extends SimpleUnit {
/**
* Returns the value of the 'Name' attribute.
*
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see kieker.model.analysismodel.statistics.StatisticsPackage#getCustomUnit_Name()
* @model required="true"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link kieker.model.analysismodel.statistics.CustomUnit#getName Name}' attribute.
*
*
*
* @param value
* the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // CustomUnit