org.eclipse.emf.ocl.types.util
Class TypesSwitch

java.lang.Object
  extended byorg.eclipse.emf.ocl.types.util.TypesSwitch

public class TypesSwitch
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:
TypesPackage

Field Summary
static java.lang.String copyright
           
protected static TypesPackage modelPackage
          The cached model package
 
Constructor Summary
TypesSwitch()
          Creates an instance of the switch
 
Method Summary
 java.lang.Object caseAnyType(AnyType object)
          Returns the result of interpretting the object as an instance of 'Any Type'
 java.lang.Object caseASTNode(ASTNode object)
          Returns the result of interpretting the object as an instance of 'AST Node'
 java.lang.Object caseBagType(BagType object)
          Returns the result of interpretting the object as an instance of 'Bag Type'
 java.lang.Object caseCollectionType(CollectionType object)
          Returns the result of interpretting the object as an instance of 'Collection Type'
 java.lang.Object caseEClass(org.eclipse.emf.ecore.EClass object)
          Returns the result of interpretting the object as an instance of 'EClass'
 java.lang.Object caseEClassifier(org.eclipse.emf.ecore.EClassifier object)
          Returns the result of interpretting the object as an instance of 'EClassifier'
 java.lang.Object caseEDataType(org.eclipse.emf.ecore.EDataType object)
          Returns the result of interpretting the object as an instance of 'EData Type'
 java.lang.Object caseElementType(ElementType object)
          Returns the result of interpretting the object as an instance of 'Element Type'
 java.lang.Object caseEModelElement(org.eclipse.emf.ecore.EModelElement object)
          Returns the result of interpretting the object as an instance of 'EModel Element'
 java.lang.Object caseENamedElement(org.eclipse.emf.ecore.ENamedElement object)
          Returns the result of interpretting the object as an instance of 'ENamed Element'
 java.lang.Object caseInvalidType(InvalidType object)
          Returns the result of interpretting the object as an instance of 'Invalid Type'
 java.lang.Object caseMessageType(MessageType object)
          Returns the result of interpretting the object as an instance of 'Message Type'
 java.lang.Object caseOrderedSetType(OrderedSetType object)
          Returns the result of interpretting the object as an instance of 'Ordered Set Type'
 java.lang.Object casePredefinedType(PredefinedType object)
          Returns the result of interpretting the object as an instance of 'Predefined Type'
 java.lang.Object casePrimitiveBoolean(PrimitiveBoolean object)
          Returns the result of interpretting the object as an instance of 'Primitive Boolean'
 java.lang.Object casePrimitiveInteger(PrimitiveInteger object)
          Returns the result of interpretting the object as an instance of 'Primitive Integer'
 java.lang.Object casePrimitiveReal(PrimitiveReal object)
          Returns the result of interpretting the object as an instance of 'Primitive Real'
 java.lang.Object casePrimitiveString(PrimitiveString object)
          Returns the result of interpretting the object as an instance of 'Primitive String'
 java.lang.Object casePrimitiveType(PrimitiveType object)
          Returns the result of interpretting the object as an instance of 'Primitive Type'
 java.lang.Object caseSequenceType(SequenceType object)
          Returns the result of interpretting the object as an instance of 'Sequence Type'
 java.lang.Object caseSetType(SetType object)
          Returns the result of interpretting the object as an instance of 'Set Type'
 java.lang.Object caseTupleType(TupleType object)
          Returns the result of interpretting the object as an instance of 'Tuple Type'
 java.lang.Object caseTypedASTNode(TypedASTNode object)
          Returns the result of interpretting the object as an instance of 'Typed AST Node'
 java.lang.Object caseTypeType(TypeType object)
          Returns the result of interpretting the object as an instance of 'Type Type'
 java.lang.Object caseVoidType(VoidType object)
          Returns the result of interpretting the object as an instance of 'Void Type'
 java.lang.Object defaultCase(org.eclipse.emf.ecore.EObject object)
          Returns the result of interpretting the object as an instance of 'EObject'
protected  java.lang.Object doSwitch(org.eclipse.emf.ecore.EClass theEClass, 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
 java.lang.Object 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
protected  java.lang.Object doSwitch(int classifierID, 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

copyright

public static final java.lang.String copyright

See Also:
Constant Field Values

modelPackage

protected static TypesPackage modelPackage
The cached model package

Constructor Detail

TypesSwitch

public TypesSwitch()
Creates an instance of the switch.

Method Detail

doSwitch

public java.lang.Object 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.

doSwitch

protected java.lang.Object doSwitch(org.eclipse.emf.ecore.EClass theEClass,
                                    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.

doSwitch

protected java.lang.Object doSwitch(int classifierID,
                                    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.

caseBagType

public java.lang.Object caseBagType(BagType object)
Returns the result of interpretting the object as an instance of 'Bag 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 interpretting the object as an instance of 'Bag Type'.
See Also:
doSwitch(EObject)

caseCollectionType

public java.lang.Object caseCollectionType(CollectionType object)
Returns the result of interpretting the object as an instance of 'Collection 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 interpretting the object as an instance of 'Collection Type'.
See Also:
doSwitch(EObject)

caseOrderedSetType

public java.lang.Object caseOrderedSetType(OrderedSetType object)
Returns the result of interpretting the object as an instance of 'Ordered Set 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 interpretting the object as an instance of 'Ordered Set Type'.
See Also:
doSwitch(EObject)

caseSequenceType

public java.lang.Object caseSequenceType(SequenceType object)
Returns the result of interpretting the object as an instance of 'Sequence 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 interpretting the object as an instance of 'Sequence Type'.
See Also:
doSwitch(EObject)

caseSetType

public java.lang.Object caseSetType(SetType object)
Returns the result of interpretting the object as an instance of 'Set 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 interpretting the object as an instance of 'Set Type'.
See Also:
doSwitch(EObject)

caseTupleType

public java.lang.Object caseTupleType(TupleType object)
Returns the result of interpretting the object as an instance of 'Tuple 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 interpretting the object as an instance of 'Tuple Type'.
See Also:
doSwitch(EObject)

caseVoidType

public java.lang.Object caseVoidType(VoidType object)
Returns the result of interpretting the object as an instance of 'Void 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 interpretting the object as an instance of 'Void Type'.
See Also:
doSwitch(EObject)

caseMessageType

public java.lang.Object caseMessageType(MessageType object)
Returns the result of interpretting the object as an instance of 'Message 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 interpretting the object as an instance of 'Message Type'.
See Also:
doSwitch(EObject)

caseElementType

public java.lang.Object caseElementType(ElementType object)
Returns the result of interpretting the object as an instance of 'Element 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 interpretting the object as an instance of 'Element Type'.
See Also:
doSwitch(EObject)

caseInvalidType

public java.lang.Object caseInvalidType(InvalidType object)
Returns the result of interpretting the object as an instance of 'Invalid 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 interpretting the object as an instance of 'Invalid Type'.
See Also:
doSwitch(EObject)

caseTypeType

public java.lang.Object caseTypeType(TypeType object)
Returns the result of interpretting the object as an instance of 'Type 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 interpretting the object as an instance of 'Type Type'.
See Also:
doSwitch(EObject)

casePrimitiveType

public java.lang.Object casePrimitiveType(PrimitiveType object)
Returns the result of interpretting the object as an instance of 'Primitive 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 interpretting the object as an instance of 'Primitive Type'.
See Also:
doSwitch(EObject)

casePrimitiveBoolean

public java.lang.Object casePrimitiveBoolean(PrimitiveBoolean object)
Returns the result of interpretting the object as an instance of 'Primitive Boolean'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpretting the object as an instance of 'Primitive Boolean'.
See Also:
doSwitch(EObject)

casePrimitiveInteger

public java.lang.Object casePrimitiveInteger(PrimitiveInteger object)
Returns the result of interpretting the object as an instance of 'Primitive Integer'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpretting the object as an instance of 'Primitive Integer'.
See Also:
doSwitch(EObject)

casePrimitiveReal

public java.lang.Object casePrimitiveReal(PrimitiveReal object)
Returns the result of interpretting the object as an instance of 'Primitive Real'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpretting the object as an instance of 'Primitive Real'.
See Also:
doSwitch(EObject)

casePrimitiveString

public java.lang.Object casePrimitiveString(PrimitiveString object)
Returns the result of interpretting the object as an instance of 'Primitive String'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpretting the object as an instance of 'Primitive String'.
See Also:
doSwitch(EObject)

caseAnyType

public java.lang.Object caseAnyType(AnyType object)
Returns the result of interpretting the object as an instance of 'Any 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 interpretting the object as an instance of 'Any Type'.
See Also:
doSwitch(EObject)

caseEModelElement

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

caseENamedElement

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

caseEClassifier

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

casePredefinedType

public java.lang.Object casePredefinedType(PredefinedType object)
Returns the result of interpretting the object as an instance of 'Predefined 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 interpretting the object as an instance of 'Predefined Type'.
See Also:
doSwitch(EObject)

caseEDataType

public java.lang.Object caseEDataType(org.eclipse.emf.ecore.EDataType object)
Returns the result of interpretting the object as an instance of 'EData 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 interpretting the object as an instance of 'EData Type'.
See Also:
doSwitch(EObject)

caseASTNode

public java.lang.Object caseASTNode(ASTNode object)
Returns the result of interpretting 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 interpretting the object as an instance of 'AST Node'.
See Also:
doSwitch(EObject)

caseTypedASTNode

public java.lang.Object caseTypedASTNode(TypedASTNode object)
Returns the result of interpretting the object as an instance of 'Typed 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 interpretting the object as an instance of 'Typed AST Node'.
See Also:
doSwitch(EObject)

caseEClass

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

defaultCase

public java.lang.Object defaultCase(org.eclipse.emf.ecore.EObject object)
Returns the result of interpretting 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 interpretting the object as an instance of 'EObject'.
See Also:
TypesSwitch.doSwitch(org.eclipse.emf.ecore.EObject)

Copyright 2002, 2006 IBM Corporation and others.
All Rights Reserved.