Interface ExpressionFactory
-
- All Superinterfaces:
EFactory
,EModelElement
,EObject
,Notifier
- All Known Implementing Classes:
ExpressionFactoryImpl
public interface ExpressionFactory extends EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
ExpressionPackage
- Generated class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static ExpressionFactory
eINSTANCE
The singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Acquire
createAcquire()
Returns a new object of class 'Acquire'.Alternative
createAlternative()
Returns a new object of class 'Alternative'.Loop
createLoop()
Returns a new object of class 'Loop'.Option
createOption()
Returns a new object of class 'Option'.Parallel
createParallel()
Returns a new object of class 'Parallel'.Release
createRelease()
Returns a new object of class 'Release'.Sequence
createSequence()
Returns a new object of class 'Sequence'.Symbol
createSymbol()
Returns a new object of class 'Symbol'.ExpressionPackage
getExpressionPackage()
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 ExpressionFactory eINSTANCE
The singleton instance of the factory.- Generated class or method.
-
-
Method Detail
-
createSymbol
Symbol createSymbol()
Returns a new object of class 'Symbol'.- Returns:
- a new object of class 'Symbol'.
- Generated class or method.
-
createSequence
Sequence createSequence()
Returns a new object of class 'Sequence'.- Returns:
- a new object of class 'Sequence'.
- Generated class or method.
-
createRelease
Release createRelease()
Returns a new object of class 'Release'.- Returns:
- a new object of class 'Release'.
- Generated class or method.
-
createParallel
Parallel createParallel()
Returns a new object of class 'Parallel'.- Returns:
- a new object of class 'Parallel'.
- Generated class or method.
-
createOption
Option createOption()
Returns a new object of class 'Option'.- Returns:
- a new object of class 'Option'.
- Generated class or method.
-
createLoop
Loop createLoop()
Returns a new object of class 'Loop'.- Returns:
- a new object of class 'Loop'.
- Generated class or method.
-
createAlternative
Alternative createAlternative()
Returns a new object of class 'Alternative'.- Returns:
- a new object of class 'Alternative'.
- Generated class or method.
-
createAcquire
Acquire createAcquire()
Returns a new object of class 'Acquire'.- Returns:
- a new object of class 'Acquire'.
- Generated class or method.
-
getExpressionPackage
ExpressionPackage getExpressionPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
- Generated class or method.
-
-