kieker.model.analysismodel.AnalysismodelPackage 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
/**
*/
package kieker.model.analysismodel;
import org.eclipse.emf.ecore.EDataType;
import org.eclipse.emf.ecore.EPackage;
/**
*
* The Package for the model.
* It contains accessors for the meta objects to represent
*
* - each class,
* - each feature of each class,
* - each operation of each class,
* - each enum,
* - and each data type
*
*
*
* @see kieker.model.analysismodel.AnalysismodelFactory
* @model kind="package"
* @generated
*/
public interface AnalysismodelPackage extends EPackage {
/**
* The package name.
*
*
*
* @generated
*/
String eNAME = "analysismodel";
/**
* The package namespace URI.
*
*
*
* @generated
*/
String eNS_URI = "http://kieker-monitoring.net/analysismodel";
/**
* The package namespace name.
*
*
*
* @generated
*/
String eNS_PREFIX = "analysismodel";
/**
* The singleton instance of the package.
*
*
*
* @generated
*/
AnalysismodelPackage eINSTANCE = kieker.model.analysismodel.impl.AnalysismodelPackageImpl.init();
/**
* The meta object id for the 'Instant' data type.
*
*
*
* @see java.time.Instant
* @see kieker.model.analysismodel.impl.AnalysismodelPackageImpl#getInstant()
* @generated
*/
int INSTANT = 0;
/**
* The meta object id for the 'Duration' data type.
*
*
*
* @see java.time.Duration
* @see kieker.model.analysismodel.impl.AnalysismodelPackageImpl#getDuration()
* @generated
*/
int DURATION = 1;
/**
* Returns the meta object for data type '{@link java.time.Instant Instant}'.
*
*
*
* @return the meta object for data type 'Instant'.
* @see java.time.Instant
* @model instanceClass="java.time.Instant"
* @generated
*/
EDataType getInstant();
/**
* Returns the meta object for data type '{@link java.time.Duration Duration}'.
*
*
*
* @return the meta object for data type 'Duration'.
* @see java.time.Duration
* @model instanceClass="java.time.Duration"
* @generated
*/
EDataType getDuration();
/**
* Returns the factory that creates the instances of the model.
*
*
*
* @return the factory that creates the instances of the model.
* @generated
*/
AnalysismodelFactory getAnalysismodelFactory();
/**
*
* Defines literals for the meta objects that represent
*
* - each class,
* - each feature of each class,
* - each operation of each class,
* - each enum,
* - and each data type
*
*
*
* @generated
*/
interface Literals {
/**
* The meta object literal for the 'Instant' data type.
*
*
*
* @see java.time.Instant
* @see kieker.model.analysismodel.impl.AnalysismodelPackageImpl#getInstant()
* @generated
*/
EDataType INSTANT = eINSTANCE.getInstant();
/**
* The meta object literal for the 'Duration' data type.
*
*
*
* @see java.time.Duration
* @see kieker.model.analysismodel.impl.AnalysismodelPackageImpl#getDuration()
* @generated
*/
EDataType DURATION = eINSTANCE.getDuration();
}
} // AnalysismodelPackage
© 2015 - 2024 Weber Informatics LLC | Privacy Policy