org.eclipse.xtend.profiler.profilermodel
Interface ModelFactory

All Superinterfaces:
org.eclipse.emf.ecore.EFactory, org.eclipse.emf.ecore.EModelElement, org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.notify.Notifier
All Known Implementing Classes:
ModelFactoryImpl

public interface ModelFactory
extends org.eclipse.emf.ecore.EFactory

The Factory for the model. It provides a create method for each non-abstract class of the model.

See Also:
ModelPackage
EMF generated code

Field Summary
static ModelFactory eINSTANCE
          The singleton instance of the factory.
 
Method Summary
 CallGroup createCallGroup()
          Returns a new object of class 'Call Group'.
 Cycle createCycle()
          Returns a new object of class 'Cycle'.
 Item createItem()
          Returns a new object of class 'Item'.
 ProfilingResult createProfilingResult()
          Returns a new object of class 'Profiling Result'.
 ModelPackage getModelPackage()
          Returns the package supported by this factory.
 
Methods inherited from interface org.eclipse.emf.ecore.EFactory
convertToString, create, createFromString, getEPackage, setEPackage
 
Methods inherited from interface org.eclipse.emf.ecore.EModelElement
getEAnnotation, getEAnnotations
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Field Detail

eINSTANCE

static final ModelFactory eINSTANCE
The singleton instance of the factory.

EMF generated code
Method Detail

createProfilingResult

ProfilingResult createProfilingResult()
Returns a new object of class 'Profiling Result'.

Returns:
a new object of class 'Profiling Result'.
EMF generated code

createCallGroup

CallGroup createCallGroup()
Returns a new object of class 'Call Group'.

Returns:
a new object of class 'Call Group'.
EMF generated code

createItem

Item createItem()
Returns a new object of class 'Item'.

Returns:
a new object of class 'Item'.
EMF generated code

createCycle

Cycle createCycle()
Returns a new object of class 'Cycle'.

Returns:
a new object of class 'Cycle'.
EMF generated code

getModelPackage

ModelPackage getModelPackage()
Returns the package supported by this factory.

Returns:
the package supported by this factory.
EMF generated code