public class FlaDslAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
createXXX
method for each class of the model.
FlaDslPackage
Constructor and Description |
---|
FlaDslAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
org.eclipse.emf.common.notify.Adapter |
createACIDavoidableAdapter()
Creates a new adapter for an object of class '
ACI Davoidable '. |
org.eclipse.emf.common.notify.Adapter |
createACIDMitigationAdapter()
Creates a new adapter for an object of class '
ACID Mitigation '. |
org.eclipse.emf.common.notify.Adapter |
createAdapter(org.eclipse.emf.common.notify.Notifier target)
Creates an adapter for the
target . |
org.eclipse.emf.common.notify.Adapter |
createBehaviourAdapter()
Creates a new adapter for an object of class '
Behaviour '. |
org.eclipse.emf.common.notify.Adapter |
createComplexNofailureDefinitionAdapter()
Creates a new adapter for an object of class '
Complex Nofailure Definition '. |
org.eclipse.emf.common.notify.Adapter |
createDefinitionsAdapter()
Creates a new adapter for an object of class '
Definitions '. |
org.eclipse.emf.common.notify.Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
org.eclipse.emf.common.notify.Adapter |
createExpressionAdapter()
Creates a new adapter for an object of class '
Expression '. |
org.eclipse.emf.common.notify.Adapter |
createFailureDefinitionAdapter()
Creates a new adapter for an object of class '
Failure Definition '. |
org.eclipse.emf.common.notify.Adapter |
createInFailureExprAdapter()
Creates a new adapter for an object of class '
In Failure Expr '. |
org.eclipse.emf.common.notify.Adapter |
createInputExpressionAdapter()
Creates a new adapter for an object of class '
Input Expression '. |
org.eclipse.emf.common.notify.Adapter |
createLhsAdapter()
Creates a new adapter for an object of class '
Lhs '. |
org.eclipse.emf.common.notify.Adapter |
createNoFailureDefinitionAdapter()
Creates a new adapter for an object of class '
No Failure Definition '. |
org.eclipse.emf.common.notify.Adapter |
createOutFailureExprAdapter()
Creates a new adapter for an object of class '
Out Failure Expr '. |
org.eclipse.emf.common.notify.Adapter |
createOutputExpressionAdapter()
Creates a new adapter for an object of class '
Output Expression '. |
org.eclipse.emf.common.notify.Adapter |
createRhsAdapter()
Creates a new adapter for an object of class '
Rhs '. |
org.eclipse.emf.common.notify.Adapter |
createVariableDefinitionAdapter()
Creates a new adapter for an object of class '
Variable Definition '. |
org.eclipse.emf.common.notify.Adapter |
createWildcardDefinitionAdapter()
Creates a new adapter for an object of class '
Wildcard Definition '. |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object.
|
public FlaDslAdapterFactory()
public boolean isFactoryForType(java.lang.Object object)
true
if the object is either the model's package or is an instance object of the model.
isFactoryForType
in interface org.eclipse.emf.common.notify.AdapterFactory
isFactoryForType
in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
public org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)
target
.
createAdapter
in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
target
- the object to adapt.target
.public org.eclipse.emf.common.notify.Adapter createBehaviourAdapter()
Behaviour
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
Behaviour
public org.eclipse.emf.common.notify.Adapter createExpressionAdapter()
Expression
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
Expression
public org.eclipse.emf.common.notify.Adapter createLhsAdapter()
Lhs
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
Lhs
public org.eclipse.emf.common.notify.Adapter createRhsAdapter()
Rhs
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
Rhs
public org.eclipse.emf.common.notify.Adapter createInputExpressionAdapter()
Input Expression
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
InputExpression
public org.eclipse.emf.common.notify.Adapter createOutputExpressionAdapter()
Output Expression
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
OutputExpression
public org.eclipse.emf.common.notify.Adapter createInFailureExprAdapter()
In Failure Expr
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
InFailureExpr
public org.eclipse.emf.common.notify.Adapter createOutFailureExprAdapter()
Out Failure Expr
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
OutFailureExpr
public org.eclipse.emf.common.notify.Adapter createDefinitionsAdapter()
Definitions
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
Definitions
public org.eclipse.emf.common.notify.Adapter createFailureDefinitionAdapter()
Failure Definition
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
FailureDefinition
public org.eclipse.emf.common.notify.Adapter createNoFailureDefinitionAdapter()
No Failure Definition
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
NoFailureDefinition
public org.eclipse.emf.common.notify.Adapter createComplexNofailureDefinitionAdapter()
Complex Nofailure Definition
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
ComplexNofailureDefinition
public org.eclipse.emf.common.notify.Adapter createWildcardDefinitionAdapter()
Wildcard Definition
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
WildcardDefinition
public org.eclipse.emf.common.notify.Adapter createVariableDefinitionAdapter()
Variable Definition
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
VariableDefinition
public org.eclipse.emf.common.notify.Adapter createACIDavoidableAdapter()
ACI Davoidable
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
ACIDavoidable
public org.eclipse.emf.common.notify.Adapter createACIDMitigationAdapter()
ACID Mitigation
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
ACIDMitigation
public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()