kieker.model.collection.CollectionFactory 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.collection;
import org.eclipse.emf.ecore.EFactory;
/**
*
* The Factory for the model.
* It provides a create method for each non-abstract class of the model.
*
* @see kieker.model.collection.CollectionPackage
* @generated
*/
public interface CollectionFactory extends EFactory {
/**
* The singleton instance of the factory.
*
*
* @generated
*/
CollectionFactory eINSTANCE = kieker.model.collection.impl.CollectionFactoryImpl.init();
/**
* Returns a new object of class 'Connections'.
*
*
* @return a new object of class 'Connections'.
* @generated
*/
Connections createConnections();
/**
* Returns a new object of class 'Operation Collection'.
*
*
* @return a new object of class 'Operation Collection'.
* @generated
*/
OperationCollection createOperationCollection();
/**
* Returns a new object of class 'Coupling'.
*
*
* @return a new object of class 'Coupling'.
* @generated
*/
Coupling createCoupling();
/**
* Returns the package supported by this factory.
*
*
* @return the package supported by this factory.
* @generated
*/
CollectionPackage getCollectionPackage();
} // CollectionFactory