Interface ModelFactory
-
- All Superinterfaces:
EFactory
,EModelElement
,EObject
,Notifier
- All Known Implementing Classes:
ModelFactoryImpl
public interface ModelFactory extends EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
ModelPackage
- Generated class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static ModelFactory
eINSTANCE
The singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContextContainer
createContextContainer()
Returns a new object of class 'Context Container'.ContextType
createContextType()
Returns a new object of class 'Context Type'.HierarchicalContext
createHierarchicalContext()
Returns a new object of class 'Hierarchical Context'.RelatedContextSet
createRelatedContextSet()
Returns a new object of class 'Related Context Set'.SingleAttributeContext
createSingleAttributeContext()
Returns a new object of class 'Single Attribute Context'.TypeContainer
createTypeContainer()
Returns a new object of class 'Type Container'.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.- Generated class or method.
-
-
Method Detail
-
createHierarchicalContext
HierarchicalContext createHierarchicalContext()
Returns a new object of class 'Hierarchical Context'.- Returns:
- a new object of class 'Hierarchical Context'.
- Generated class or method.
-
createSingleAttributeContext
SingleAttributeContext createSingleAttributeContext()
Returns a new object of class 'Single Attribute Context'.- Returns:
- a new object of class 'Single Attribute Context'.
- Generated class or method.
-
createRelatedContextSet
RelatedContextSet createRelatedContextSet()
Returns a new object of class 'Related Context Set'.- Returns:
- a new object of class 'Related Context Set'.
- Generated class or method.
-
createContextContainer
ContextContainer createContextContainer()
Returns a new object of class 'Context Container'.- Returns:
- a new object of class 'Context Container'.
- Generated class or method.
-
createContextType
ContextType createContextType()
Returns a new object of class 'Context Type'.- Returns:
- a new object of class 'Context Type'.
- Generated class or method.
-
createTypeContainer
TypeContainer createTypeContainer()
Returns a new object of class 'Type Container'.- Returns:
- a new object of class 'Type Container'.
- Generated class or method.
-
getModelPackage
ModelPackage getModelPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
- Generated class or method.
-
-