Interface StructureFactory
- 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:
StructureFactoryImpl
public interface StructureFactory
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:
StructurePackage
-
Field Summary
Fields Modifier and Type Field Description static StructureFactoryeINSTANCEThe singleton instance of the factory. -
Method Summary
Modifier and Type Method Description ArchitectureViewcreateArchitectureView()Returns a new object of class 'Architecture View'.ComponentcreateComponent()Returns a new object of class 'Component'.LayercreateLayer()Returns a new object of class 'Layer'.SoftwareSystemcreateSoftwareSystem()Returns a new object of class 'Software System'.StructureElementcreateStructureElement()Returns a new object of class 'Element'.StructureModelcreateStructureModel()Returns a new object of class 'Model'.StructureRelationshipcreateStructureRelationship()Returns a new object of class 'Relationship'.SubsystemcreateSubsystem()Returns a new object of class 'Subsystem'.StructurePackagegetStructurePackage()Returns the package supported by this factory.Methods inherited from interface org.eclipse.emf.ecore.EFactory
convertToString, create, createFromString, getEPackage, setEPackageMethods inherited from interface org.eclipse.emf.ecore.EModelElement
getEAnnotation, getEAnnotationsMethods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnsetMethods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
Field Details
-
eINSTANCE
The singleton instance of the factory.
-
-
Method Details
-
createSubsystem
Subsystem createSubsystem()Returns a new object of class 'Subsystem'.- Returns:
- a new object of class 'Subsystem'.
-
createLayer
Layer createLayer()Returns a new object of class 'Layer'.- Returns:
- a new object of class 'Layer'.
-
createStructureModel
StructureModel createStructureModel()Returns a new object of class 'Model'.- Returns:
- a new object of class 'Model'.
-
createComponent
Component createComponent()Returns a new object of class 'Component'.- Returns:
- a new object of class 'Component'.
-
createSoftwareSystem
SoftwareSystem createSoftwareSystem()Returns a new object of class 'Software System'.- Returns:
- a new object of class 'Software System'.
-
createStructureRelationship
StructureRelationship createStructureRelationship()Returns a new object of class 'Relationship'.- Returns:
- a new object of class 'Relationship'.
-
createArchitectureView
ArchitectureView createArchitectureView()Returns a new object of class 'Architecture View'.- Returns:
- a new object of class 'Architecture View'.
-
createStructureElement
StructureElement createStructureElement()Returns a new object of class 'Element'.- Returns:
- a new object of class 'Element'.
-
getStructurePackage
StructurePackage getStructurePackage()Returns the package supported by this factory.- Returns:
- the package supported by this factory.
-