|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectAdapterFactoryImpl
org.eclipse.gmt.modisco.omg.kdm.action.util.ActionAdapterFactory
public class ActionAdapterFactory
The Adapter Factory for the model.
It provides an adapter createXXX
method for each class of the model.
ActionPackage
Constructor Summary | |
---|---|
ActionAdapterFactory()
Creates an instance of the adapter factory. |
Method Summary | |
---|---|
Adapter |
createAbstractActionRelationshipAdapter()
Creates a new adapter for an object of class ' Abstract Action Relationship '. |
Adapter |
createAbstractCodeElementAdapter()
Creates a new adapter for an object of class ' Abstract Code Element '. |
Adapter |
createActionElementAdapter()
Creates a new adapter for an object of class ' Element '. |
Adapter |
createActionRelationshipAdapter()
Creates a new adapter for an object of class ' Relationship '. |
Adapter |
createAdapter(Notifier target)
Creates an adapter for the target . |
Adapter |
createAddressesAdapter()
Creates a new adapter for an object of class ' Addresses '. |
Adapter |
createBlockUnitAdapter()
Creates a new adapter for an object of class ' Block Unit '. |
Adapter |
createCallsAdapter()
Creates a new adapter for an object of class ' Calls '. |
Adapter |
createCatchUnitAdapter()
Creates a new adapter for an object of class ' Catch Unit '. |
Adapter |
createCompliesToAdapter()
Creates a new adapter for an object of class ' Complies To '. |
Adapter |
createControlFlowAdapter()
Creates a new adapter for an object of class ' Control Flow '. |
Adapter |
createCreatesAdapter()
Creates a new adapter for an object of class ' Creates '. |
Adapter |
createDispatchesAdapter()
Creates a new adapter for an object of class ' Dispatches '. |
Adapter |
createElementAdapter()
Creates a new adapter for an object of class ' Element '. |
Adapter |
createEntryFlowAdapter()
Creates a new adapter for an object of class ' Entry Flow '. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case. |
Adapter |
createExceptionFlowAdapter()
Creates a new adapter for an object of class ' Exception Flow '. |
Adapter |
createExceptionUnitAdapter()
Creates a new adapter for an object of class ' Exception Unit '. |
Adapter |
createExitFlowAdapter()
Creates a new adapter for an object of class ' Exit Flow '. |
Adapter |
createFalseFlowAdapter()
Creates a new adapter for an object of class ' False Flow '. |
Adapter |
createFinallyUnitAdapter()
Creates a new adapter for an object of class ' Finally Unit '. |
Adapter |
createFlowAdapter()
Creates a new adapter for an object of class ' Flow '. |
Adapter |
createGuardedFlowAdapter()
Creates a new adapter for an object of class ' Guarded Flow '. |
Adapter |
createKDMEntityAdapter()
Creates a new adapter for an object of class ' KDM Entity '. |
Adapter |
createKDMRelationshipAdapter()
Creates a new adapter for an object of class ' KDM Relationship '. |
Adapter |
createModelElementAdapter()
Creates a new adapter for an object of class ' Model Element '. |
Adapter |
createReadsAdapter()
Creates a new adapter for an object of class ' Reads '. |
Adapter |
createThrowsAdapter()
Creates a new adapter for an object of class ' Throws '. |
Adapter |
createTrueFlowAdapter()
Creates a new adapter for an object of class ' True Flow '. |
Adapter |
createTryUnitAdapter()
Creates a new adapter for an object of class ' Try Unit '. |
Adapter |
createUsesTypeAdapter()
Creates a new adapter for an object of class ' Uses Type '. |
Adapter |
createWritesAdapter()
Creates a new adapter for an object of class ' Writes '. |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ActionAdapterFactory()
Method Detail |
---|
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.
public Adapter createAdapter(Notifier target)
target
.
target
- the object to adapt.
target
.public Adapter createActionElementAdapter()
Element
'.
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.
ActionElement
public Adapter createAbstractActionRelationshipAdapter()
Abstract Action Relationship
'.
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.
AbstractActionRelationship
public Adapter createControlFlowAdapter()
Control Flow
'.
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.
ControlFlow
public Adapter createCallsAdapter()
Calls
'.
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.
Calls
public Adapter createCreatesAdapter()
Creates
'.
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.
Creates
public Adapter createReadsAdapter()
Reads
'.
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.
Reads
public Adapter createWritesAdapter()
Writes
'.
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.
Writes
public Adapter createCompliesToAdapter()
Complies To
'.
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.
CompliesTo
public Adapter createFlowAdapter()
Flow
'.
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.
Flow
public Adapter createTrueFlowAdapter()
True Flow
'.
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.
TrueFlow
public Adapter createFalseFlowAdapter()
False Flow
'.
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.
FalseFlow
public Adapter createGuardedFlowAdapter()
Guarded Flow
'.
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.
GuardedFlow
public Adapter createUsesTypeAdapter()
Uses Type
'.
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.
UsesType
public Adapter createAddressesAdapter()
Addresses
'.
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.
Addresses
public Adapter createActionRelationshipAdapter()
Relationship
'.
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.
ActionRelationship
public Adapter createThrowsAdapter()
Throws
'.
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.
Throws
public Adapter createDispatchesAdapter()
Dispatches
'.
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.
Dispatches
public Adapter createEntryFlowAdapter()
Entry Flow
'.
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.
EntryFlow
public Adapter createBlockUnitAdapter()
Block Unit
'.
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.
BlockUnit
public Adapter createExceptionUnitAdapter()
Exception Unit
'.
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.
ExceptionUnit
public Adapter createTryUnitAdapter()
Try Unit
'.
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.
TryUnit
public Adapter createFinallyUnitAdapter()
Finally Unit
'.
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.
FinallyUnit
public Adapter createCatchUnitAdapter()
Catch Unit
'.
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.
CatchUnit
public Adapter createExitFlowAdapter()
Exit Flow
'.
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.
ExitFlow
public Adapter createExceptionFlowAdapter()
Exception Flow
'.
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.
ExceptionFlow
public Adapter createElementAdapter()
Element
'.
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.
Element
public Adapter createModelElementAdapter()
Model Element
'.
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.
ModelElement
public Adapter createKDMEntityAdapter()
KDM Entity
'.
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.
KDMEntity
public Adapter createAbstractCodeElementAdapter()
Abstract Code Element
'.
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.
AbstractCodeElement
public Adapter createKDMRelationshipAdapter()
KDM Relationship
'.
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.
KDMRelationship
public Adapter createEObjectAdapter()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |