org.eclipse.emf.emfstore.internal.server.model.versioning.operations.util
Class OperationsAdapterFactory

java.lang.Object
  extended by org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
      extended by org.eclipse.emf.emfstore.internal.server.model.versioning.operations.util.OperationsAdapterFactory
All Implemented Interfaces:
org.eclipse.emf.common.notify.AdapterFactory
Direct Known Subclasses:
OperationsItemProviderAdapterFactory

public class OperationsAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl

The Adapter Factory for the model. It provides an adapter createXXX method for each class of the model.

See Also:
OperationsPackage

Constructor Summary
OperationsAdapterFactory()
          Creates an instance of the adapter factory.
 
Method Summary
 org.eclipse.emf.common.notify.Adapter createAbstractOperationAdapter()
          Creates a new adapter for an object of class ' Abstract Operation'.
 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 createAttributeOperationAdapter()
          Creates a new adapter for an object of class ' Attribute Operation'.
 org.eclipse.emf.common.notify.Adapter createCompositeOperationAdapter()
          Creates a new adapter for an object of class ' Composite Operation'.
 org.eclipse.emf.common.notify.Adapter createCreateDeleteOperationAdapter()
          Creates a new adapter for an object of class ' Create Delete Operation'.
 org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
          Creates a new adapter for the default case.
 org.eclipse.emf.common.notify.Adapter createEObjectToModelElementIdMapAdapter()
          Creates a new adapter for an object of class 'EObject To Model Element Id Map'.
 org.eclipse.emf.common.notify.Adapter createFeatureOperationAdapter()
          Creates a new adapter for an object of class ' Feature Operation'.
 org.eclipse.emf.common.notify.Adapter createIdentifiableElementAdapter()
          Creates a new adapter for an object of class ' Identifiable Element'.
 org.eclipse.emf.common.notify.Adapter createModelElementGroupAdapter()
          Creates a new adapter for an object of class ' Model Element Group'.
 org.eclipse.emf.common.notify.Adapter createMultiAttributeMoveOperationAdapter()
          Creates a new adapter for an object of class ' Multi Attribute Move Operation'.
 org.eclipse.emf.common.notify.Adapter createMultiAttributeOperationAdapter()
          Creates a new adapter for an object of class ' Multi Attribute Operation'.
 org.eclipse.emf.common.notify.Adapter createMultiAttributeSetOperationAdapter()
          Creates a new adapter for an object of class ' Multi Attribute Set Operation'.
 org.eclipse.emf.common.notify.Adapter createMultiReferenceMoveOperationAdapter()
          Creates a new adapter for an object of class ' Multi Reference Move Operation'.
 org.eclipse.emf.common.notify.Adapter createMultiReferenceOperationAdapter()
          Creates a new adapter for an object of class ' Multi Reference Operation'.
 org.eclipse.emf.common.notify.Adapter createMultiReferenceSetOperationAdapter()
          Creates a new adapter for an object of class ' Multi Reference Set Operation'.
 org.eclipse.emf.common.notify.Adapter createOperationGroupAdapter()
          Creates a new adapter for an object of class ' Operation Group'.
 org.eclipse.emf.common.notify.Adapter createOperationIdAdapter()
          Creates a new adapter for an object of class ' Operation Id'.
 org.eclipse.emf.common.notify.Adapter createReferenceOperationAdapter()
          Creates a new adapter for an object of class ' Reference Operation'.
 org.eclipse.emf.common.notify.Adapter createSingleReferenceOperationAdapter()
          Creates a new adapter for an object of class ' Single Reference Operation'.
 org.eclipse.emf.common.notify.Adapter createUniqueIdentifierAdapter()
          Creates a new adapter for an object of class ' Unique Identifier'.
 boolean isFactoryForType(Object object)
          Returns whether this factory is applicable for the type of the object.
 
Methods inherited from class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
adapt, adapt, adaptAllNew, adaptNew
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperationsAdapterFactory

public OperationsAdapterFactory()
Creates an instance of the adapter factory.

Method Detail

isFactoryForType

public boolean isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object. This implementation returns true if the object is either the model's package or is an instance object of the model.

Specified by:
isFactoryForType in interface org.eclipse.emf.common.notify.AdapterFactory
Overrides:
isFactoryForType in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
Returns:
whether this factory is applicable for the type of the object.

createAdapter

public org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)
Creates an adapter for the target.

Overrides:
createAdapter in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
Parameters:
target - the object to adapt.
Returns:
the adapter for the target.

createAbstractOperationAdapter

public org.eclipse.emf.common.notify.Adapter createAbstractOperationAdapter()
Creates a new adapter for an object of class ' Abstract Operation'. 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.

Returns:
the new adapter.
See Also:
AbstractOperation

createCompositeOperationAdapter

public org.eclipse.emf.common.notify.Adapter createCompositeOperationAdapter()
Creates a new adapter for an object of class ' Composite Operation'. 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.

Returns:
the new adapter.
See Also:
CompositeOperation

createFeatureOperationAdapter

public org.eclipse.emf.common.notify.Adapter createFeatureOperationAdapter()
Creates a new adapter for an object of class ' Feature Operation'. 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.

Returns:
the new adapter.
See Also:
FeatureOperation

createCreateDeleteOperationAdapter

public org.eclipse.emf.common.notify.Adapter createCreateDeleteOperationAdapter()
Creates a new adapter for an object of class ' Create Delete Operation'. 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.

Returns:
the new adapter.
See Also:
CreateDeleteOperation

createAttributeOperationAdapter

public org.eclipse.emf.common.notify.Adapter createAttributeOperationAdapter()
Creates a new adapter for an object of class ' Attribute Operation'. 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.

Returns:
the new adapter.
See Also:
AttributeOperation

createMultiAttributeOperationAdapter

public org.eclipse.emf.common.notify.Adapter createMultiAttributeOperationAdapter()
Creates a new adapter for an object of class ' Multi Attribute Operation'. 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.

Returns:
the new adapter.
See Also:
MultiAttributeOperation

createMultiAttributeSetOperationAdapter

public org.eclipse.emf.common.notify.Adapter createMultiAttributeSetOperationAdapter()
Creates a new adapter for an object of class ' Multi Attribute Set Operation'. 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.

Returns:
the new adapter.
See Also:
MultiAttributeSetOperation

createMultiAttributeMoveOperationAdapter

public org.eclipse.emf.common.notify.Adapter createMultiAttributeMoveOperationAdapter()
Creates a new adapter for an object of class ' Multi Attribute Move Operation'. 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.

Returns:
the new adapter.
See Also:
MultiAttributeMoveOperation

createSingleReferenceOperationAdapter

public org.eclipse.emf.common.notify.Adapter createSingleReferenceOperationAdapter()
Creates a new adapter for an object of class ' Single Reference Operation'. 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.

Returns:
the new adapter.
See Also:
SingleReferenceOperation

createMultiReferenceOperationAdapter

public org.eclipse.emf.common.notify.Adapter createMultiReferenceOperationAdapter()
Creates a new adapter for an object of class ' Multi Reference Operation'. 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.

Returns:
the new adapter.
See Also:
MultiReferenceOperation

createMultiReferenceSetOperationAdapter

public org.eclipse.emf.common.notify.Adapter createMultiReferenceSetOperationAdapter()
Creates a new adapter for an object of class ' Multi Reference Set Operation'. 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.

Returns:
the new adapter.
See Also:
MultiReferenceSetOperation

createMultiReferenceMoveOperationAdapter

public org.eclipse.emf.common.notify.Adapter createMultiReferenceMoveOperationAdapter()
Creates a new adapter for an object of class ' Multi Reference Move Operation'. 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.

Returns:
the new adapter.
See Also:
MultiReferenceMoveOperation

createReferenceOperationAdapter

public org.eclipse.emf.common.notify.Adapter createReferenceOperationAdapter()
Creates a new adapter for an object of class ' Reference Operation'. 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.

Returns:
the new adapter.
See Also:
ReferenceOperation

createOperationIdAdapter

public org.eclipse.emf.common.notify.Adapter createOperationIdAdapter()
Creates a new adapter for an object of class ' Operation Id'. 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.

Returns:
the new adapter.
See Also:
OperationId

createOperationGroupAdapter

public org.eclipse.emf.common.notify.Adapter createOperationGroupAdapter()
Creates a new adapter for an object of class ' Operation Group'. 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.

Returns:
the new adapter.
See Also:
OperationGroup

createModelElementGroupAdapter

public org.eclipse.emf.common.notify.Adapter createModelElementGroupAdapter()
Creates a new adapter for an object of class ' Model Element Group'. 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.

Returns:
the new adapter.
See Also:
ModelElementGroup

createEObjectToModelElementIdMapAdapter

public org.eclipse.emf.common.notify.Adapter createEObjectToModelElementIdMapAdapter()
Creates a new adapter for an object of class 'EObject To Model Element Id Map'. 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.

Returns:
the new adapter.
See Also:
Map.Entry

createIdentifiableElementAdapter

public org.eclipse.emf.common.notify.Adapter createIdentifiableElementAdapter()
Creates a new adapter for an object of class ' Identifiable 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.

Returns:
the new adapter.
See Also:
IdentifiableElement

createUniqueIdentifierAdapter

public org.eclipse.emf.common.notify.Adapter createUniqueIdentifierAdapter()
Creates a new adapter for an object of class ' Unique Identifier'. 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.

Returns:
the new adapter.
See Also:
UniqueIdentifier

createEObjectAdapter

public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
Creates a new adapter for the default case. This default implementation returns null.

Returns:
the new adapter.


Copyright © 2015. All Rights Reserved.