Interface NotationFactory
-
- 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:
NotationFactoryImpl
public interface NotationFactory extends org.eclipse.emf.ecore.EFactoryThe Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
NotationPackage
-
-
Field Summary
Fields Modifier and Type Field Description static NotationFactoryeINSTANCEThe singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiagramcreateDiagram()Returns a new object of class 'Diagram'.EdgecreateEdge()Returns a new object of class 'Edge'.SemanticElementReferencecreateSemanticElementReference()Returns a new object of class 'Semantic Element Reference'.ShapecreateShape()Returns a new object of class 'Shape'.NotationPackagegetNotationPackage()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
-
-
-
-
Field Detail
-
eINSTANCE
static final NotationFactory eINSTANCE
The singleton instance of the factory.
-
-
Method Detail
-
createShape
Shape createShape()
Returns a new object of class 'Shape'.- Returns:
- a new object of class 'Shape'.
-
createEdge
Edge createEdge()
Returns a new object of class 'Edge'.- Returns:
- a new object of class 'Edge'.
-
createDiagram
Diagram createDiagram()
Returns a new object of class 'Diagram'.- Returns:
- a new object of class 'Diagram'.
-
createSemanticElementReference
SemanticElementReference createSemanticElementReference()
Returns a new object of class 'Semantic Element Reference'.- Returns:
- a new object of class 'Semantic Element Reference'.
-
getNotationPackage
NotationPackage getNotationPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
-
-