public class CommandsAdapterFactory
extends AdapterFactoryImpl
createXXX method for each class of the model.
CommandsPackageImpl| Modifier and Type | Field and Description |
|---|---|
protected static CommandsPackageImpl |
modelPackage
The cached model package
|
protected CommandsSwitch<Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods |
| Constructor and Description |
|---|
CommandsAdapterFactory()
Creates an instance of the adapter factory
|
| Modifier and Type | Method and Description |
|---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target |
Adapter |
createApplicationElementAdapter()
Creates a new adapter for an object of class '
Element' |
Adapter |
createBindingContextAdapter()
Creates a new adapter for an object of class '
Binding Context' |
Adapter |
createBindingsAdapter()
Creates a new adapter for an object of class '
Bindings' |
Adapter |
createBindingTableAdapter()
Creates a new adapter for an object of class '
Binding Table' |
Adapter |
createBindingTableContainerAdapter()
Creates a new adapter for an object of class '
Binding Table Container' |
Adapter |
createCategoryAdapter()
Creates a new adapter for an object of class '
Category' |
Adapter |
createCommandAdapter()
Creates a new adapter for an object of class '
Command' |
Adapter |
createCommandParameterAdapter()
Creates a new adapter for an object of class '
Command Parameter' |
Adapter |
createContributionAdapter()
Creates a new adapter for an object of class '
Contribution' |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case
|
Adapter |
createHandlerAdapter()
Creates a new adapter for an object of class '
Handler' |
Adapter |
createHandlerContainerAdapter()
Creates a new adapter for an object of class '
Handler Container' |
Adapter |
createKeyBindingAdapter()
Creates a new adapter for an object of class '
Key Binding' |
Adapter |
createKeySequenceAdapter()
Creates a new adapter for an object of class '
Key Sequence' |
Adapter |
createLocalizableAdapter()
Creates a new adapter for an object of class '
Localizable' |
Adapter |
createParameterAdapter()
Creates a new adapter for an object of class '
Parameter' |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object
|
protected static CommandsPackageImpl modelPackage
protected CommandsSwitch<Adapter> modelSwitch
createXXX methods.
public CommandsAdapterFactory()
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 createBindingTableContainerAdapter()
Binding Table Container'.
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.
MBindingTableContainerpublic Adapter createBindingsAdapter()
Bindings'.
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.
MBindingspublic Adapter createBindingContextAdapter()
Binding Context'.
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.
MBindingContextpublic Adapter createBindingTableAdapter()
Binding Table'.
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.
MBindingTablepublic Adapter createCommandAdapter()
Command'.
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.
MCommandpublic Adapter createCommandParameterAdapter()
Command Parameter'.
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.
MCommandParameterpublic Adapter createHandlerAdapter()
Handler'.
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.
MHandlerpublic Adapter createHandlerContainerAdapter()
Handler Container'.
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.
MHandlerContainerpublic Adapter createKeyBindingAdapter()
Key Binding'.
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.
MKeyBindingpublic Adapter createKeySequenceAdapter()
Key Sequence'.
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.
MKeySequencepublic Adapter createParameterAdapter()
Parameter'.
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.
MParameterpublic Adapter createCategoryAdapter()
Category'.
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.
MCategorypublic Adapter createApplicationElementAdapter()
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.
MApplicationElementpublic Adapter createLocalizableAdapter()
Localizable'.
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.
MLocalizablepublic Adapter createContributionAdapter()
Contribution'.
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.
MContributionpublic Adapter createEObjectAdapter()