Interface StatementsFactory
-
- All Superinterfaces:
EFactory
,EModelElement
,EObject
,Notifier
- All Known Implementing Classes:
StatementsFactoryImpl
public interface StatementsFactory extends EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
StatementsPackage
- Generated class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static StatementsFactory
eINSTANCE
The singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Assert
createAssert()
Returns a new object of class 'Assert'.Block
createBlock()
Returns a new object of class 'Block'.Break
createBreak()
Returns a new object of class 'Break'.CatchBlock
createCatchBlock()
Returns a new object of class 'Catch Block'.Condition
createCondition()
Returns a new object of class 'Condition'.Continue
createContinue()
Returns a new object of class 'Continue'.DefaultSwitchCase
createDefaultSwitchCase()
Returns a new object of class 'Default Switch Case'.DefaultSwitchRule
createDefaultSwitchRule()
Returns a new object of class 'Default Switch Rule'.DoWhileLoop
createDoWhileLoop()
Returns a new object of class 'Do While Loop'.EmptyStatement
createEmptyStatement()
Returns a new object of class 'Empty Statement'.ExpressionStatement
createExpressionStatement()
Returns a new object of class 'Expression Statement'.ForEachLoop
createForEachLoop()
Returns a new object of class 'For Each Loop'.ForLoop
createForLoop()
Returns a new object of class 'For Loop'.JumpLabel
createJumpLabel()
Returns a new object of class 'Jump Label'.LocalVariableStatement
createLocalVariableStatement()
Returns a new object of class 'Local Variable Statement'.NormalSwitchCase
createNormalSwitchCase()
Returns a new object of class 'Normal Switch Case'.NormalSwitchRule
createNormalSwitchRule()
Returns a new object of class 'Normal Switch Rule'.Return
createReturn()
Returns a new object of class 'Return'.Switch
createSwitch()
Returns a new object of class 'Switch'.SynchronizedBlock
createSynchronizedBlock()
Returns a new object of class 'Synchronized Block'.Throw
createThrow()
Returns a new object of class 'Throw'.TryBlock
createTryBlock()
Returns a new object of class 'Try Block'.WhileLoop
createWhileLoop()
Returns a new object of class 'While Loop'.YieldStatement
createYieldStatement()
Returns a new object of class 'Yield Statement'.StatementsPackage
getStatementsPackage()
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 StatementsFactory eINSTANCE
The singleton instance of the factory.- Generated class or method.
-
-
Method Detail
-
createAssert
Assert createAssert()
Returns a new object of class 'Assert'.- Returns:
- a new object of class 'Assert'.
- Generated class or method.
-
createBreak
Break createBreak()
Returns a new object of class 'Break'.- Returns:
- a new object of class 'Break'.
- Generated class or method.
-
createBlock
Block createBlock()
Returns a new object of class 'Block'.- Returns:
- a new object of class 'Block'.
- Generated class or method.
-
createCatchBlock
CatchBlock createCatchBlock()
Returns a new object of class 'Catch Block'.- Returns:
- a new object of class 'Catch Block'.
- Generated class or method.
-
createCondition
Condition createCondition()
Returns a new object of class 'Condition'.- Returns:
- a new object of class 'Condition'.
- Generated class or method.
-
createContinue
Continue createContinue()
Returns a new object of class 'Continue'.- Returns:
- a new object of class 'Continue'.
- Generated class or method.
-
createDefaultSwitchCase
DefaultSwitchCase createDefaultSwitchCase()
Returns a new object of class 'Default Switch Case'.- Returns:
- a new object of class 'Default Switch Case'.
- Generated class or method.
-
createDoWhileLoop
DoWhileLoop createDoWhileLoop()
Returns a new object of class 'Do While Loop'.- Returns:
- a new object of class 'Do While Loop'.
- Generated class or method.
-
createEmptyStatement
EmptyStatement createEmptyStatement()
Returns a new object of class 'Empty Statement'.- Returns:
- a new object of class 'Empty Statement'.
- Generated class or method.
-
createExpressionStatement
ExpressionStatement createExpressionStatement()
Returns a new object of class 'Expression Statement'.- Returns:
- a new object of class 'Expression Statement'.
- Generated class or method.
-
createForLoop
ForLoop createForLoop()
Returns a new object of class 'For Loop'.- Returns:
- a new object of class 'For Loop'.
- Generated class or method.
-
createForEachLoop
ForEachLoop createForEachLoop()
Returns a new object of class 'For Each Loop'.- Returns:
- a new object of class 'For Each Loop'.
- Generated class or method.
-
createJumpLabel
JumpLabel createJumpLabel()
Returns a new object of class 'Jump Label'.- Returns:
- a new object of class 'Jump Label'.
- Generated class or method.
-
createLocalVariableStatement
LocalVariableStatement createLocalVariableStatement()
Returns a new object of class 'Local Variable Statement'.- Returns:
- a new object of class 'Local Variable Statement'.
- Generated class or method.
-
createNormalSwitchCase
NormalSwitchCase createNormalSwitchCase()
Returns a new object of class 'Normal Switch Case'.- Returns:
- a new object of class 'Normal Switch Case'.
- Generated class or method.
-
createReturn
Return createReturn()
Returns a new object of class 'Return'.- Returns:
- a new object of class 'Return'.
- Generated class or method.
-
createSwitch
Switch createSwitch()
Returns a new object of class 'Switch'.- Returns:
- a new object of class 'Switch'.
- Generated class or method.
-
createSynchronizedBlock
SynchronizedBlock createSynchronizedBlock()
Returns a new object of class 'Synchronized Block'.- Returns:
- a new object of class 'Synchronized Block'.
- Generated class or method.
-
createThrow
Throw createThrow()
Returns a new object of class 'Throw'.- Returns:
- a new object of class 'Throw'.
- Generated class or method.
-
createTryBlock
TryBlock createTryBlock()
Returns a new object of class 'Try Block'.- Returns:
- a new object of class 'Try Block'.
- Generated class or method.
-
createWhileLoop
WhileLoop createWhileLoop()
Returns a new object of class 'While Loop'.- Returns:
- a new object of class 'While Loop'.
- Generated class or method.
-
createYieldStatement
YieldStatement createYieldStatement()
Returns a new object of class 'Yield Statement'.- Returns:
- a new object of class 'Yield Statement'.
- Generated class or method.
-
createDefaultSwitchRule
DefaultSwitchRule createDefaultSwitchRule()
Returns a new object of class 'Default Switch Rule'.- Returns:
- a new object of class 'Default Switch Rule'.
- Generated class or method.
-
createNormalSwitchRule
NormalSwitchRule createNormalSwitchRule()
Returns a new object of class 'Normal Switch Rule'.- Returns:
- a new object of class 'Normal Switch Rule'.
- Generated class or method.
-
getStatementsPackage
StatementsPackage getStatementsPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
- Generated class or method.
-
-