org.eclipse.emf.emfstore.internal.server.model.versioning.operations.util
Class OperationsSwitch<T>

java.lang.Object
  extended by org.eclipse.emf.emfstore.internal.server.model.versioning.operations.util.OperationsSwitch<T>

public class OperationsSwitch<T>
extends Object

The Switch for the model's inheritance hierarchy. It supports the call doSwitch(object) to invoke the caseXXX method for each class of the model, starting with the actual class of the object and proceeding up the inheritance hierarchy until a non-null result is returned, which is the result of the switch.

See Also:
OperationsPackage

Constructor Summary
OperationsSwitch()
          Creates an instance of the switch.
 
Method Summary
 T caseAbstractOperation(AbstractOperation object)
          Returns the result of interpreting the object as an instance of ' Abstract Operation'.
 T caseAttributeOperation(AttributeOperation object)
          Returns the result of interpreting the object as an instance of ' Attribute Operation'.
 T caseCompositeOperation(CompositeOperation object)
          Returns the result of interpreting the object as an instance of ' Composite Operation'.
 T caseCreateDeleteOperation(CreateDeleteOperation object)
          Returns the result of interpreting the object as an instance of ' Create Delete Operation'.
 T caseEObjectToModelElementIdMap(Map.Entry<org.eclipse.emf.ecore.EObject,ModelElementId> object)
          Returns the result of interpreting the object as an instance of ' EObject To Model Element Id Map'.
 T caseFeatureOperation(FeatureOperation object)
          Returns the result of interpreting the object as an instance of ' Feature Operation'.
 T caseIdentifiableElement(IdentifiableElement object)
          Returns the result of interpreting the object as an instance of ' Identifiable Element'.
 T caseModelElementGroup(ModelElementGroup object)
          Returns the result of interpreting the object as an instance of ' Model Element Group'.
 T caseMultiAttributeMoveOperation(MultiAttributeMoveOperation object)
          Returns the result of interpreting the object as an instance of ' Multi Attribute Move Operation'.
 T caseMultiAttributeOperation(MultiAttributeOperation object)
          Returns the result of interpreting the object as an instance of ' Multi Attribute Operation'.
 T caseMultiAttributeSetOperation(MultiAttributeSetOperation object)
          Returns the result of interpreting the object as an instance of ' Multi Attribute Set Operation'.
 T caseMultiReferenceMoveOperation(MultiReferenceMoveOperation object)
          Returns the result of interpreting the object as an instance of ' Multi Reference Move Operation'.
 T caseMultiReferenceOperation(MultiReferenceOperation object)
          Returns the result of interpreting the object as an instance of ' Multi Reference Operation'.
 T caseMultiReferenceSetOperation(MultiReferenceSetOperation object)
          Returns the result of interpreting the object as an instance of ' Multi Reference Set Operation'.
 T caseOperationGroup(OperationGroup object)
          Returns the result of interpreting the object as an instance of 'Operation Group'.
 T caseOperationId(OperationId object)
          Returns the result of interpreting the object as an instance of 'Operation Id'.
 T caseReferenceOperation(ReferenceOperation object)
          Returns the result of interpreting the object as an instance of ' Reference Operation'.
 T caseSingleReferenceOperation(SingleReferenceOperation object)
          Returns the result of interpreting the object as an instance of ' Single Reference Operation'.
 T caseUniqueIdentifier(UniqueIdentifier object)
          Returns the result of interpreting the object as an instance of ' Unique Identifier'.
 T defaultCase(org.eclipse.emf.ecore.EObject object)
          Returns the result of interpreting the object as an instance of 'EObject'.
 T doSwitch(org.eclipse.emf.ecore.EObject theEObject)
          Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperationsSwitch

public OperationsSwitch()
Creates an instance of the switch.

Method Detail

doSwitch

public T doSwitch(org.eclipse.emf.ecore.EObject theEObject)
Calls caseXXX for each class of the model until one returns a non null result; it yields that result.

Returns:
the first non-null result returned by a caseXXX call.

caseAbstractOperation

public T caseAbstractOperation(AbstractOperation object)
Returns the result of interpreting the object as an instance of ' Abstract Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Abstract Operation'.
See Also:
doSwitch(EObject)

caseCompositeOperation

public T caseCompositeOperation(CompositeOperation object)
Returns the result of interpreting the object as an instance of ' Composite Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Composite Operation'.
See Also:
doSwitch(EObject)

caseFeatureOperation

public T caseFeatureOperation(FeatureOperation object)
Returns the result of interpreting the object as an instance of ' Feature Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Feature Operation'.
See Also:
doSwitch(EObject)

caseCreateDeleteOperation

public T caseCreateDeleteOperation(CreateDeleteOperation object)
Returns the result of interpreting the object as an instance of ' Create Delete Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Create Delete Operation'.
See Also:
doSwitch(EObject)

caseAttributeOperation

public T caseAttributeOperation(AttributeOperation object)
Returns the result of interpreting the object as an instance of ' Attribute Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Attribute Operation'.
See Also:
doSwitch(EObject)

caseMultiAttributeOperation

public T caseMultiAttributeOperation(MultiAttributeOperation object)
Returns the result of interpreting the object as an instance of ' Multi Attribute Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Multi Attribute Operation'.
See Also:
doSwitch(EObject)

caseMultiAttributeSetOperation

public T caseMultiAttributeSetOperation(MultiAttributeSetOperation object)
Returns the result of interpreting the object as an instance of ' Multi Attribute Set Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Multi Attribute Set Operation'.
See Also:
doSwitch(EObject)

caseMultiAttributeMoveOperation

public T caseMultiAttributeMoveOperation(MultiAttributeMoveOperation object)
Returns the result of interpreting the object as an instance of ' Multi Attribute Move Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Multi Attribute Move Operation'.
See Also:
doSwitch(EObject)

caseSingleReferenceOperation

public T caseSingleReferenceOperation(SingleReferenceOperation object)
Returns the result of interpreting the object as an instance of ' Single Reference Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Single Reference Operation'.
See Also:
doSwitch(EObject)

caseMultiReferenceOperation

public T caseMultiReferenceOperation(MultiReferenceOperation object)
Returns the result of interpreting the object as an instance of ' Multi Reference Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Multi Reference Operation'.
See Also:
doSwitch(EObject)

caseMultiReferenceSetOperation

public T caseMultiReferenceSetOperation(MultiReferenceSetOperation object)
Returns the result of interpreting the object as an instance of ' Multi Reference Set Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Multi Reference Set Operation'.
See Also:
doSwitch(EObject)

caseMultiReferenceMoveOperation

public T caseMultiReferenceMoveOperation(MultiReferenceMoveOperation object)
Returns the result of interpreting the object as an instance of ' Multi Reference Move Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Multi Reference Move Operation'.
See Also:
doSwitch(EObject)

caseReferenceOperation

public T caseReferenceOperation(ReferenceOperation object)
Returns the result of interpreting the object as an instance of ' Reference Operation'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Reference Operation'.
See Also:
doSwitch(EObject)

caseOperationId

public T caseOperationId(OperationId object)
Returns the result of interpreting the object as an instance of 'Operation Id'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Operation Id'.
See Also:
doSwitch(EObject)

caseOperationGroup

public T caseOperationGroup(OperationGroup object)
Returns the result of interpreting the object as an instance of 'Operation Group'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Operation Group'.
See Also:
doSwitch(EObject)

caseModelElementGroup

public T caseModelElementGroup(ModelElementGroup object)
Returns the result of interpreting the object as an instance of ' Model Element Group'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Model Element Group'.
See Also:
doSwitch(EObject)

caseEObjectToModelElementIdMap

public T caseEObjectToModelElementIdMap(Map.Entry<org.eclipse.emf.ecore.EObject,ModelElementId> object)
Returns the result of interpreting the object as an instance of ' EObject To Model Element Id Map'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' EObject To Model Element Id Map'.
See Also:
doSwitch(EObject)

caseIdentifiableElement

public T caseIdentifiableElement(IdentifiableElement object)
Returns the result of interpreting the object as an instance of ' Identifiable Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Identifiable Element'.
See Also:
doSwitch(EObject)

caseUniqueIdentifier

public T caseUniqueIdentifier(UniqueIdentifier object)
Returns the result of interpreting the object as an instance of ' Unique Identifier'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of ' Unique Identifier'.
See Also:
doSwitch(EObject)

defaultCase

public T defaultCase(org.eclipse.emf.ecore.EObject object)
Returns the result of interpreting the object as an instance of 'EObject'. This implementation returns null; returning a non-null result will terminate the switch, but this is the last case anyway.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'EObject'.
See Also:
doSwitch(org.eclipse.emf.ecore.EObject)


Copyright © 2015. All Rights Reserved.