Interface DataFlowDiagramFactory
-
- All Superinterfaces:
EFactory
,EModelElement
,EObject
,Notifier
- All Known Implementing Classes:
DataFlowDiagramFactoryImpl
public interface DataFlowDiagramFactory extends EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
DataFlowDiagramPackage
- Generated class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static DataFlowDiagramFactory
eINSTANCE
The singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Data
createData()
Returns a new object of class 'Data'.DataFlow
createDataFlow()
Returns a new object of class 'Data Flow'.DataFlowDiagram
createDataFlowDiagram()
Returns a new object of class 'Data Flow Diagram'.DataFlowDiagramRefinement
createDataFlowDiagramRefinement()
Returns a new object of class 'Refinement'.EdgeRefinement
createEdgeRefinement()
Returns a new object of class 'Edge Refinement'.ExternalActor
createExternalActor()
Returns a new object of class 'External Actor'.Process
createProcess()
Returns a new object of class 'Process'.Store
createStore()
Returns a new object of class 'Store'.DataFlowDiagramPackage
getDataFlowDiagramPackage()
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 DataFlowDiagramFactory eINSTANCE
The singleton instance of the factory.- Generated class or method.
-
-
Method Detail
-
createDataFlowDiagram
DataFlowDiagram createDataFlowDiagram()
Returns a new object of class 'Data Flow Diagram'.- Returns:
- a new object of class 'Data Flow Diagram'.
- Generated class or method.
-
createExternalActor
ExternalActor createExternalActor()
Returns a new object of class 'External Actor'.- Returns:
- a new object of class 'External Actor'.
- Generated class or method.
-
createStore
Store createStore()
Returns a new object of class 'Store'.- Returns:
- a new object of class 'Store'.
- Generated class or method.
-
createProcess
Process createProcess()
Returns a new object of class 'Process'.- Returns:
- a new object of class 'Process'.
- Generated class or method.
-
createDataFlowDiagramRefinement
DataFlowDiagramRefinement createDataFlowDiagramRefinement()
Returns a new object of class 'Refinement'.- Returns:
- a new object of class 'Refinement'.
- Generated class or method.
-
createDataFlow
DataFlow createDataFlow()
Returns a new object of class 'Data Flow'.- Returns:
- a new object of class 'Data Flow'.
- Generated class or method.
-
createData
Data createData()
Returns a new object of class 'Data'.- Returns:
- a new object of class 'Data'.
- Generated class or method.
-
createEdgeRefinement
EdgeRefinement createEdgeRefinement()
Returns a new object of class 'Edge Refinement'.- Returns:
- a new object of class 'Edge Refinement'.
- Generated class or method.
-
getDataFlowDiagramPackage
DataFlowDiagramPackage getDataFlowDiagramPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
- Generated class or method.
-
-