org.eclipse.gmt.umlx.qvtrelation.util
Class QvtrelationSwitch<T>

java.lang.Object
  extended by org.eclipse.gmt.umlx.qvtrelation.util.QvtrelationSwitch<T>

public class QvtrelationSwitch<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:
QvtrelationPackage

Constructor Summary
QvtrelationSwitch()
          Creates an instance of the switch.
 
Method Summary
 T caseClass(Class object)
          Returns the result of interpreting the object as an instance of 'Class'.
 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 caseElement(Element object)
          Returns the result of interpreting the object as an instance of 'Element'.
 T caseKey(Key object)
          Returns the result of interpreting the object as an instance of 'Key'.
 T caseNamedElement(NamedElement object)
          Returns the result of interpreting the object as an instance of 'Named Element'.
 T caseObject(Object object)
          Returns the result of interpreting the object as an instance of 'Object'.
 T caseOclExpression(OclExpression object)
          Returns the result of interpreting the object as an instance of 'Ocl Expression'.
 T casePackage(Package object)
          Returns the result of interpreting the object as an instance of 'Package'.
 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'.
 T caseType(Type object)
          Returns the result of interpreting the object as an instance of 'Type'.
 T caseTypedElement(TypedElement object)
          Returns the result of interpreting the object as an instance of 'Typed Element'.
 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

QvtrelationSwitch

public QvtrelationSwitch()
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)

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)

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)

caseObject

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

caseElement

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

caseNamedElement

public T caseNamedElement(NamedElement object)
Returns the result of interpreting the object as an instance of 'Named 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 'Named 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)

caseTypedElement

public T caseTypedElement(TypedElement 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)

caseOclExpression

public T caseOclExpression(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)

caseType

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

caseClass

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

casePackage

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