public class RecipeAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
createXXX
method for each class of the model.
RecipePackage
Modifier and Type | Field and Description |
---|---|
protected static RecipePackage |
modelPackage
The cached model package.
|
protected RecipeSwitch<org.eclipse.emf.common.notify.Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods. |
Constructor and Description |
---|
RecipeAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
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 |
createCaptureOutputAdapter()
Creates a new adapter for an object of class '
Capture Output '. |
org.eclipse.emf.common.notify.Adapter |
createDefinitionAdapter()
Creates a new adapter for an object of class '
Definition '. |
org.eclipse.emf.common.notify.Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
org.eclipse.emf.common.notify.Adapter |
createExecuteAdapter()
Creates a new adapter for an object of class '
Execute '. |
org.eclipse.emf.common.notify.Adapter |
createInputReferenceAdapter()
Creates a new adapter for an object of class '
Input Reference '. |
org.eclipse.emf.common.notify.Adapter |
createInputValueAdapter()
Creates a new adapter for an object of class '
Input Value '. |
org.eclipse.emf.common.notify.Adapter |
createMapInputAdapter()
Creates a new adapter for an object of class '
Map Input '. |
org.eclipse.emf.common.notify.Adapter |
createProfileAdapter()
Creates a new adapter for an object of class '
Profile '. |
org.eclipse.emf.common.notify.Adapter |
createPropertyEntryAdapter()
Creates a new adapter for an object of class '
Property Entry '. |
org.eclipse.emf.common.notify.Adapter |
createStringInputValueAdapter()
Creates a new adapter for an object of class '
String Input Value '. |
org.eclipse.emf.common.notify.Adapter |
createTaskAdapter()
Creates a new adapter for an object of class '
Task '. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
|
protected static RecipePackage modelPackage
protected RecipeSwitch<org.eclipse.emf.common.notify.Adapter> modelSwitch
createXXX
methods.
public RecipeAdapterFactory()
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 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 createDefinitionAdapter()
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.
Definition
public org.eclipse.emf.common.notify.Adapter createTaskAdapter()
Task
'.
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.
Task
public org.eclipse.emf.common.notify.Adapter createExecuteAdapter()
Execute
'.
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.
Execute
public org.eclipse.emf.common.notify.Adapter createMapInputAdapter()
Map Input
'.
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.
MapInput
public org.eclipse.emf.common.notify.Adapter createInputValueAdapter()
Input Value
'.
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.
InputValue
public org.eclipse.emf.common.notify.Adapter createStringInputValueAdapter()
String Input Value
'.
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.
StringInputValue
public org.eclipse.emf.common.notify.Adapter createCaptureOutputAdapter()
Capture Output
'.
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.
CaptureOutput
public org.eclipse.emf.common.notify.Adapter createInputReferenceAdapter()
Input Reference
'.
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.
InputReference
public org.eclipse.emf.common.notify.Adapter createPropertyEntryAdapter()
Property Entry
'.
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.
PropertyEntry
public org.eclipse.emf.common.notify.Adapter createProfileAdapter()
Profile
'.
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.
Profile
public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()