public class SfcAdapterFactory extends AdapterFactoryImpl
createXXX
method for each class of the model.
SfcPackage
Constructor and Description |
---|
SfcAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
Adapter |
createActionAdapter()
Creates a new adapter for an object of class '
Action '. |
Adapter |
createActionAssociationAdapter()
Creates a new adapter for an object of class '
Action Association '. |
Adapter |
createActionQualifierAdapter()
Creates a new adapter for an object of class '
Action Qualifier '. |
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target . |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createFunctionBlockBodySpecificationAdapter()
Creates a new adapter for an object of class '
Function Block Body Specification '. |
Adapter |
createSequentialFunctionChartAdapter()
Creates a new adapter for an object of class '
Sequential Function Chart '. |
Adapter |
createSimpleActionQualifierAdapter()
Creates a new adapter for an object of class '
Simple Action Qualifier '. |
Adapter |
createSimpleQualifierAdapter()
Creates a new adapter for an object of class '
Simple Qualifier '. |
Adapter |
createStepAdapter()
Creates a new adapter for an object of class '
Step '. |
Adapter |
createTimedActionQualifierAdapter()
Creates a new adapter for an object of class '
Timed Action Qualifier '. |
Adapter |
createTransitionAdapter()
Creates a new adapter for an object of class '
Transition '. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
|
adapt, adapt, adaptAllNew, adaptNew
public SfcAdapterFactory()
public boolean isFactoryForType(Object object)
true
if the object is either the model's package or is an instance object of the model.
isFactoryForType
in interface AdapterFactory
isFactoryForType
in class AdapterFactoryImpl
public Adapter createAdapter(Notifier target)
target
.
createAdapter
in class AdapterFactoryImpl
target
- the object to adapt.target
.public Adapter createActionAdapter()
Action
'.
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.
Action
public Adapter createActionAssociationAdapter()
Action Association
'.
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.
ActionAssociation
public Adapter createActionQualifierAdapter()
Action Qualifier
'.
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.
ActionQualifier
public Adapter createSequentialFunctionChartAdapter()
Sequential Function Chart
'.
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.
SequentialFunctionChart
public Adapter createSimpleActionQualifierAdapter()
Simple Action Qualifier
'.
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.
SimpleActionQualifier
public Adapter createSimpleQualifierAdapter()
Simple Qualifier
'.
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.
SimpleQualifier
public Adapter createStepAdapter()
Step
'.
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.
Step
public Adapter createTimedActionQualifierAdapter()
Timed Action Qualifier
'.
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.
TimedActionQualifier
public Adapter createTransitionAdapter()
Transition
'.
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.
Transition
public Adapter createFunctionBlockBodySpecificationAdapter()
Function Block Body Specification
'.
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.
FunctionBlockBodySpecification
public Adapter createEObjectAdapter()