org.eclipse.gmt.umlx.eqvtrelation.util
Class EqvtRelationSwitch<T>

java.lang.Object
  extended by org.eclipse.gmt.umlx.eqvtrelation.util.EqvtRelationSwitch<T>

public class EqvtRelationSwitch<T>
extends java.lang.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:
EqvtRelationPackage

Constructor Summary
EqvtRelationSwitch()
          Creates an instance of the switch.
 
Method Summary
 T caseASTNode(org.eclipse.ocl.utilities.ASTNode object)
          Returns the result of interpreting the object as an instance of 'AST Node'.
 T caseDomain(Domain object)
          Returns the result of interpreting the object as an instance of 'Domain'.
 T caseDomainPattern(DomainPattern object)
          Returns the result of interpreting the object as an instance of 'Domain Pattern'.
 T caseEClass(org.eclipse.emf.ecore.EClass object)
          Returns the result of interpreting the object as an instance of 'EClass'.
 T caseEClassifier(org.eclipse.emf.ecore.EClassifier object)
          Returns the result of interpreting the object as an instance of 'EClassifier'.
 T caseEModelElement(org.eclipse.emf.ecore.EModelElement object)
          Returns the result of interpreting the object as an instance of 'EModel Element'.
 T caseENamedElement(org.eclipse.emf.ecore.ENamedElement object)
          Returns the result of interpreting the object as an instance of 'ENamed Element'.
 T caseEPackage(org.eclipse.emf.ecore.EPackage object)
          Returns the result of interpreting the object as an instance of 'EPackage'.
 T caseETypedElement(org.eclipse.emf.ecore.ETypedElement object)
          Returns the result of interpreting the object as an instance of 'ETyped Element'.
 T caseKey(Key object)
          Returns the result of interpreting the object as an instance of 'Key'.
 T caseOCLExpression_1(org.eclipse.ocl.ecore.OCLExpression object)
          Returns the result of interpreting the object as an instance of 'OCL Expression'.
<C> T
caseOCLExpression(org.eclipse.ocl.expressions.OCLExpression<C> object)
          Returns the result of interpreting the object as an instance of 'OCL Expression'.
 T casePattern(Pattern object)
          Returns the result of interpreting the object as an instance of 'Pattern'.
 T caseRelation(Relation object)
          Returns the result of interpreting the object as an instance of 'Relation'.
 T caseRelationalTransformation(RelationalTransformation object)
          Returns the result of interpreting the object as an instance of 'Relational Transformation'.
 T caseRelationCallExp(RelationCallExp object)
          Returns the result of interpreting the object as an instance of 'Relation Call Exp'.
 T caseRelationDomain(RelationDomain object)
          Returns the result of interpreting the object as an instance of 'Relation Domain'.
 T caseRelationDomainAssignment(RelationDomainAssignment object)
          Returns the result of interpreting the object as an instance of 'Relation Domain Assignment'.
 T caseRelationImplementation(RelationImplementation object)
          Returns the result of interpreting the object as an instance of 'Relation Implementation'.
 T caseRule(Rule object)
          Returns the result of interpreting the object as an instance of 'Rule'.
 T caseTransformation(Transformation object)
          Returns the result of interpreting the object as an instance of 'Transformation'.
<C> T
caseTypedElement(org.eclipse.ocl.utilities.TypedElement<C> object)
          Returns the result of interpreting the object as an instance of 'Typed Element'.
 T caseVisitable(org.eclipse.ocl.utilities.Visitable object)
          Returns the result of interpreting the object as an instance of 'Visitable'.
 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

EqvtRelationSwitch

public EqvtRelationSwitch()
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.

caseRelation

public T caseRelation(Relation object)
Returns the result of interpreting the object as an instance of 'Relation'. 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 'Relation'.
See Also:
doSwitch(EObject)

caseRelationDomain

public T caseRelationDomain(RelationDomain object)
Returns the result of interpreting the object as an instance of 'Relation Domain'. 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 'Relation Domain'.
See Also:
doSwitch(EObject)

caseRelationDomainAssignment

public T caseRelationDomainAssignment(RelationDomainAssignment object)
Returns the result of interpreting the object as an instance of 'Relation Domain Assignment'. 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 'Relation Domain Assignment'.
See Also:
doSwitch(EObject)

caseDomainPattern

public T caseDomainPattern(DomainPattern object)
Returns the result of interpreting the object as an instance of 'Domain Pattern'. 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 'Domain Pattern'.
See Also:
doSwitch(EObject)

caseRelationImplementation

public T caseRelationImplementation(RelationImplementation object)
Returns the result of interpreting the object as an instance of 'Relation Implementation'. 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 'Relation Implementation'.
See Also:
doSwitch(EObject)

caseRelationCallExp

public T caseRelationCallExp(RelationCallExp object)
Returns the result of interpreting the object as an instance of 'Relation Call Exp'. 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 'Relation Call Exp'.
See Also:
doSwitch(EObject)

caseRelationalTransformation

public T caseRelationalTransformation(RelationalTransformation object)
Returns the result of interpreting the object as an instance of 'Relational Transformation'. 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 'Relational Transformation'.
See Also:
doSwitch(EObject)

caseKey

public T caseKey(Key object)
Returns the result of interpreting the object as an instance of 'Key'. 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 'Key'.
See Also:
doSwitch(EObject)

caseEModelElement

public T caseEModelElement(org.eclipse.emf.ecore.EModelElement object)
Returns the result of interpreting the object as an instance of 'EModel 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 'EModel Element'.
See Also:
doSwitch(EObject)

caseENamedElement

public T caseENamedElement(org.eclipse.emf.ecore.ENamedElement object)
Returns the result of interpreting the object as an instance of 'ENamed 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 'ENamed Element'.
See Also:
doSwitch(EObject)

caseRule

public T caseRule(Rule object)
Returns the result of interpreting the object as an instance of 'Rule'. 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 'Rule'.
See Also:
doSwitch(EObject)

caseDomain

public T caseDomain(Domain object)
Returns the result of interpreting the object as an instance of 'Domain'. 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 'Domain'.
See Also:
doSwitch(EObject)

casePattern

public T casePattern(Pattern object)
Returns the result of interpreting the object as an instance of 'Pattern'. 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 'Pattern'.
See Also:
doSwitch(EObject)

caseETypedElement

public T caseETypedElement(org.eclipse.emf.ecore.ETypedElement object)
Returns the result of interpreting the object as an instance of 'ETyped 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 'ETyped Element'.
See Also:
doSwitch(EObject)

caseTypedElement

public <C> T caseTypedElement(org.eclipse.ocl.utilities.TypedElement<C> object)
Returns the result of interpreting the object as an instance of 'Typed 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 'Typed Element'.
See Also:
doSwitch(EObject)

caseVisitable

public T caseVisitable(org.eclipse.ocl.utilities.Visitable object)
Returns the result of interpreting the object as an instance of 'Visitable'. 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 'Visitable'.
See Also:
doSwitch(EObject)

caseASTNode

public T caseASTNode(org.eclipse.ocl.utilities.ASTNode object)
Returns the result of interpreting the object as an instance of 'AST Node'. 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 'AST Node'.
See Also:
doSwitch(EObject)

caseOCLExpression

public <C> T caseOCLExpression(org.eclipse.ocl.expressions.OCLExpression<C> object)
Returns the result of interpreting the object as an instance of 'OCL Expression'. 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 'OCL Expression'.
See Also:
doSwitch(EObject)

caseOCLExpression_1

public T caseOCLExpression_1(org.eclipse.ocl.ecore.OCLExpression object)
Returns the result of interpreting the object as an instance of 'OCL Expression'. 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 'OCL Expression'.
See Also:
doSwitch(EObject)

caseEClassifier

public T caseEClassifier(org.eclipse.emf.ecore.EClassifier object)
Returns the result of interpreting the object as an instance of 'EClassifier'. 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 'EClassifier'.
See Also:
doSwitch(EObject)

caseEClass

public T caseEClass(org.eclipse.emf.ecore.EClass object)
Returns the result of interpreting the object as an instance of 'EClass'. 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 'EClass'.
See Also:
doSwitch(EObject)

caseEPackage

public T caseEPackage(org.eclipse.emf.ecore.EPackage object)
Returns the result of interpreting the object as an instance of 'EPackage'. 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 'EPackage'.
See Also:
doSwitch(EObject)

caseTransformation

public T caseTransformation(Transformation object)
Returns the result of interpreting the object as an instance of 'Transformation'. 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 'Transformation'.
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)