public class DeltaAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
createXXX
method for each class of the model.
DeltaPackage
Modifier and Type | Field and Description |
---|---|
protected static DeltaPackage |
modelPackage
The cached model package.
|
protected DeltaSwitch |
modelSwitch
The switch the delegates to the
createXXX methods. |
Constructor and Description |
---|
DeltaAdapterFactory()
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 |
createAddDeltaAdapter()
Creates a new adapter for an object of class '
Add Delta '. |
org.eclipse.emf.common.notify.Adapter |
createChangeDeltaAdapter()
Creates a new adapter for an object of class '
Change Delta '. |
org.eclipse.emf.common.notify.Adapter |
createCompositeDeltaAdapter()
Creates a new adapter for an object of class '
Composite Delta '. |
org.eclipse.emf.common.notify.Adapter |
createConflictAdapter()
Creates a new adapter for an object of class '
Conflict '. |
org.eclipse.emf.common.notify.Adapter |
createCrossResourceEObjectLocationAdapter()
Creates a new adapter for an object of class '
Cross Resource EObject Location '. |
org.eclipse.emf.common.notify.Adapter |
createDeleteDeltaAdapter()
Creates a new adapter for an object of class '
Delete Delta '. |
org.eclipse.emf.common.notify.Adapter |
createDeltaAdapter()
Creates a new adapter for an object of class '
Delta '. |
org.eclipse.emf.common.notify.Adapter |
createDeltaContainerAdapter()
Creates a new adapter for an object of class '
Container '. |
org.eclipse.emf.common.notify.Adapter |
createEAnnotationLocationAdapter()
Creates a new adapter for an object of class '
EAnnotation Location '. |
org.eclipse.emf.common.notify.Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
org.eclipse.emf.common.notify.Adapter |
createEObjectLocationAdapter()
Creates a new adapter for an object of class '
EObject Location '. |
org.eclipse.emf.common.notify.Adapter |
createJoinDeltaAdapter()
Creates a new adapter for an object of class '
Join Delta '. |
org.eclipse.emf.common.notify.Adapter |
createListDeltaAdapter()
Creates a new adapter for an object of class '
List Delta '. |
org.eclipse.emf.common.notify.Adapter |
createLocationAdapter()
Creates a new adapter for an object of class '
Location '. |
org.eclipse.emf.common.notify.Adapter |
createMorphDeltaAdapter()
Creates a new adapter for an object of class '
Morph Delta '. |
org.eclipse.emf.common.notify.Adapter |
createMoveDeltaAdapter()
Creates a new adapter for an object of class '
Move Delta '. |
org.eclipse.emf.common.notify.Adapter |
createResolutionAdapter()
Creates a new adapter for an object of class '
Resolution '. |
org.eclipse.emf.common.notify.Adapter |
createResourceLocationAdapter()
Creates a new adapter for an object of class '
Resource Location '. |
org.eclipse.emf.common.notify.Adapter |
createSeparationDeltaAdapter()
Creates a new adapter for an object of class '
Separation Delta '. |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object.
|
protected static DeltaPackage modelPackage
protected DeltaSwitch modelSwitch
createXXX
methods.
public DeltaAdapterFactory()
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 createDeltaContainerAdapter()
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.
DeltaContainer
public org.eclipse.emf.common.notify.Adapter createDeltaAdapter()
Delta
'.
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.
Delta
public org.eclipse.emf.common.notify.Adapter createLocationAdapter()
Location
'.
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.
Location
public org.eclipse.emf.common.notify.Adapter createConflictAdapter()
Conflict
'.
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.
Conflict
public org.eclipse.emf.common.notify.Adapter createAddDeltaAdapter()
Add Delta
'.
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.
AddDelta
public org.eclipse.emf.common.notify.Adapter createDeleteDeltaAdapter()
Delete Delta
'.
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.
DeleteDelta
public org.eclipse.emf.common.notify.Adapter createMoveDeltaAdapter()
Move Delta
'.
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.
MoveDelta
public org.eclipse.emf.common.notify.Adapter createChangeDeltaAdapter()
Change Delta
'.
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.
ChangeDelta
public org.eclipse.emf.common.notify.Adapter createCompositeDeltaAdapter()
Composite Delta
'.
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.
CompositeDelta
public org.eclipse.emf.common.notify.Adapter createEAnnotationLocationAdapter()
EAnnotation Location
'.
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.
EAnnotationLocation
public org.eclipse.emf.common.notify.Adapter createResolutionAdapter()
Resolution
'.
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.
Resolution
public org.eclipse.emf.common.notify.Adapter createListDeltaAdapter()
List Delta
'.
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.
ListDelta
public org.eclipse.emf.common.notify.Adapter createEObjectLocationAdapter()
EObject Location
'.
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.
EObjectLocation
public org.eclipse.emf.common.notify.Adapter createResourceLocationAdapter()
Resource Location
'.
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.
ResourceLocation
public org.eclipse.emf.common.notify.Adapter createJoinDeltaAdapter()
Join Delta
'.
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.
JoinDelta
public org.eclipse.emf.common.notify.Adapter createCrossResourceEObjectLocationAdapter()
Cross Resource EObject Location
'.
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.
CrossResourceEObjectLocation
public org.eclipse.emf.common.notify.Adapter createSeparationDeltaAdapter()
Separation Delta
'.
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.
SeparationDelta
public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
public org.eclipse.emf.common.notify.Adapter createMorphDeltaAdapter()
Morph Delta
'.
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.
MorphDelta