Package de.uka.ipd.sdq.units
Interface UnitsFactory
-
- All Superinterfaces:
EFactory
,EModelElement
,EObject
,Notifier
- All Known Implementing Classes:
UnitsFactoryImpl
public interface UnitsFactory extends EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
UnitsPackage
- Generated class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static String
copyright
static UnitsFactory
eINSTANCE
The singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BaseUnit
createBaseUnit()
Returns a new object of class 'Base Unit'.UnitDivision
createUnitDivision()
Returns a new object of class 'Unit Division'.UnitMultiplication
createUnitMultiplication()
Returns a new object of class 'Unit Multiplication'.UnitPower
createUnitPower()
Returns a new object of class 'Unit Power'.UnitRepository
createUnitRepository()
Returns a new object of class 'Unit Repository'.UnitsPackage
getUnitsPackage()
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
-
copyright
static final String copyright
- See Also:
- Constant Field Values
- Generated class or method.
-
eINSTANCE
static final UnitsFactory eINSTANCE
The singleton instance of the factory.- Generated class or method.
-
-
Method Detail
-
createBaseUnit
BaseUnit createBaseUnit()
Returns a new object of class 'Base Unit'.- Returns:
- a new object of class 'Base Unit'.
- Generated class or method.
-
createUnitRepository
UnitRepository createUnitRepository()
Returns a new object of class 'Unit Repository'.- Returns:
- a new object of class 'Unit Repository'.
- Generated class or method.
-
createUnitMultiplication
UnitMultiplication createUnitMultiplication()
Returns a new object of class 'Unit Multiplication'.- Returns:
- a new object of class 'Unit Multiplication'.
- Generated class or method.
-
createUnitPower
UnitPower createUnitPower()
Returns a new object of class 'Unit Power'.- Returns:
- a new object of class 'Unit Power'.
- Generated class or method.
-
createUnitDivision
UnitDivision createUnitDivision()
Returns a new object of class 'Unit Division'.- Returns:
- a new object of class 'Unit Division'.
- Generated class or method.
-
getUnitsPackage
UnitsPackage getUnitsPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
- Generated class or method.
-
-