Class ReferencesSwitch<T>
- java.lang.Object
-
- org.eclipse.emf.ecore.util.Switch<T>
-
- org.emftext.language.java.references.util.ReferencesSwitch<T>
-
public class ReferencesSwitch<T> extends Switch<T>
The Switch for the model's inheritance hierarchy. It supports the calldoSwitch(object)
to invoke thecaseXXX
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:
ReferencesPackage
- Generated class or method.
-
-
Field Summary
Fields Modifier and Type Field Description protected static ReferencesPackage
modelPackage
The cached model package
-
Constructor Summary
Constructors Constructor Description ReferencesSwitch()
Creates an instance of the switch.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
caseAdditiveExpressionChild(AdditiveExpressionChild object)
Returns the result of interpreting the object as an instance of 'Additive Expression Child'.T
caseAndExpressionChild(AndExpressionChild object)
Returns the result of interpreting the object as an instance of 'And Expression Child'.T
caseAnnotable(Annotable object)
Returns the result of interpreting the object as an instance of 'Annotable'.T
caseAnnotationValue(AnnotationValue object)
Returns the result of interpreting the object as an instance of 'Annotation Value'.T
caseArgumentable(Argumentable object)
Returns the result of interpreting the object as an instance of 'Argumentable'.T
caseArrayInitializationValue(ArrayInitializationValue object)
Returns the result of interpreting the object as an instance of 'Array Initialization Value'.T
caseArrayTypeable(ArrayTypeable object)
Returns the result of interpreting the object as an instance of 'Array Typeable'.T
caseAssignmentExpressionChild(AssignmentExpressionChild object)
Returns the result of interpreting the object as an instance of 'Assignment Expression Child'.T
caseCallTypeArgumentable(CallTypeArgumentable object)
Returns the result of interpreting the object as an instance of 'Call Type Argumentable'.T
caseCommentable(Commentable object)
Returns the result of interpreting the object as an instance of 'Commentable'.T
caseConditionalAndExpressionChild(ConditionalAndExpressionChild object)
Returns the result of interpreting the object as an instance of 'Conditional And Expression Child'.T
caseConditionalExpressionChild(ConditionalExpressionChild object)
Returns the result of interpreting the object as an instance of 'Conditional Expression Child'.T
caseConditionalOrExpressionChild(ConditionalOrExpressionChild object)
Returns the result of interpreting the object as an instance of 'Conditional Or Expression Child'.T
caseElementReference(ElementReference object)
Returns the result of interpreting the object as an instance of 'Element Reference'.T
caseEqualityExpressionChild(EqualityExpressionChild object)
Returns the result of interpreting the object as an instance of 'Equality Expression Child'.T
caseExclusiveOrExpressionChild(ExclusiveOrExpressionChild object)
Returns the result of interpreting the object as an instance of 'Exclusive Or Expression Child'.T
caseExpression(Expression object)
Returns the result of interpreting the object as an instance of 'Expression'.T
caseIdentifierReference(IdentifierReference object)
Returns the result of interpreting the object as an instance of 'Identifier Reference'.T
caseInclusiveOrExpressionChild(InclusiveOrExpressionChild object)
Returns the result of interpreting the object as an instance of 'Inclusive Or Expression Child'.T
caseInstanceOfExpressionChild(InstanceOfExpressionChild object)
Returns the result of interpreting the object as an instance of 'Instance Of Expression Child'.T
caseLambdaBody(LambdaBody object)
Returns the result of interpreting the object as an instance of 'Lambda Body'.T
caseMethodCall(MethodCall object)
Returns the result of interpreting the object as an instance of 'Method Call'.T
caseMethodReferenceExpressionChild(MethodReferenceExpressionChild object)
Returns the result of interpreting the object as an instance of 'Method Reference Expression Child'.T
caseMultiplicativeExpressionChild(MultiplicativeExpressionChild object)
Returns the result of interpreting the object as an instance of 'Multiplicative Expression Child'.T
caseNamedElement(NamedElement object)
Returns the result of interpreting the object as an instance of 'Named Element'.T
casePrimaryExpression(PrimaryExpression object)
Returns the result of interpreting the object as an instance of 'Primary Expression'.T
casePrimitiveTypeReference(PrimitiveTypeReference object)
Returns the result of interpreting the object as an instance of 'Primitive Type Reference'.T
caseReference(Reference object)
Returns the result of interpreting the object as an instance of 'Reference'.T
caseReferenceableElement(ReferenceableElement object)
Returns the result of interpreting the object as an instance of 'Referenceable Element'.T
caseReflectiveClassReference(ReflectiveClassReference object)
Returns the result of interpreting the object as an instance of 'Reflective Class Reference'.T
caseRelationExpressionChild(RelationExpressionChild object)
Returns the result of interpreting the object as an instance of 'Relation Expression Child'.T
caseResource(Resource object)
Returns the result of interpreting the object as an instance of 'Resource'.T
caseSelfReference(SelfReference object)
Returns the result of interpreting the object as an instance of 'Self Reference'.T
caseShiftExpressionChild(ShiftExpressionChild object)
Returns the result of interpreting the object as an instance of 'Shift Expression Child'.T
caseStringReference(StringReference object)
Returns the result of interpreting the object as an instance of 'String Reference'.T
caseTextBlockReference(TextBlockReference object)
Returns the result of interpreting the object as an instance of 'Text Block Reference'.T
caseTypeArgumentable(TypeArgumentable object)
Returns the result of interpreting the object as an instance of 'Type Argumentable'.T
caseUnaryExpressionChild(UnaryExpressionChild object)
Returns the result of interpreting the object as an instance of 'Unary Expression Child'.T
caseUnaryModificationExpressionChild(UnaryModificationExpressionChild object)
Returns the result of interpreting the object as an instance of 'Unary Modification Expression Child'.T
defaultCase(EObject object)
Returns the result of interpreting the object as an instance of 'EObject'.protected T
doSwitch(int classifierID, EObject theEObject)
CallscaseXXX
for each class of the model until one returns a non null result; it yields that result.protected boolean
isSwitchFor(EPackage ePackage)
Checks whether this is a switch for the given package.
-
-
-
Field Detail
-
modelPackage
protected static ReferencesPackage modelPackage
The cached model package- Generated class or method.
-
-
Method Detail
-
isSwitchFor
protected boolean isSwitchFor(EPackage ePackage)
Checks whether this is a switch for the given package.- Specified by:
isSwitchFor
in classSwitch<T>
- Parameters:
ePackage
- the package in question.- Returns:
- whether this is a switch for the given package.
- Generated class or method.
-
doSwitch
protected T doSwitch(int classifierID, EObject theEObject)
CallscaseXXX
for each class of the model until one returns a non null result; it yields that result.
-
caseReference
public T caseReference(Reference object)
Returns the result of interpreting the object as an instance of 'Reference'. 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'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseArgumentable
public T caseArgumentable(Argumentable object)
Returns the result of interpreting the object as an instance of 'Argumentable'. 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 'Argumentable'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseReferenceableElement
public T caseReferenceableElement(ReferenceableElement object)
Returns the result of interpreting the object as an instance of 'Referenceable 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 'Referenceable Element'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseElementReference
public T caseElementReference(ElementReference object)
Returns the result of interpreting the object as an instance of 'Element Reference'. 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 Reference'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseIdentifierReference
public T caseIdentifierReference(IdentifierReference object)
Returns the result of interpreting the object as an instance of 'Identifier Reference'. 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 'Identifier Reference'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseMethodCall
public T caseMethodCall(MethodCall object)
Returns the result of interpreting the object as an instance of 'Method Call'. 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 'Method Call'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseReflectiveClassReference
public T caseReflectiveClassReference(ReflectiveClassReference object)
Returns the result of interpreting the object as an instance of 'Reflective Class Reference'. 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 'Reflective Class Reference'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
casePrimitiveTypeReference
public T casePrimitiveTypeReference(PrimitiveTypeReference object)
Returns the result of interpreting the object as an instance of 'Primitive Type Reference'. 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 'Primitive Type Reference'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseStringReference
public T caseStringReference(StringReference object)
Returns the result of interpreting the object as an instance of 'String Reference'. 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 'String Reference'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseSelfReference
public T caseSelfReference(SelfReference object)
Returns the result of interpreting the object as an instance of 'Self Reference'. 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 'Self Reference'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseTextBlockReference
public T caseTextBlockReference(TextBlockReference object)
Returns the result of interpreting the object as an instance of 'Text Block Reference'. 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 'Text Block Reference'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseCommentable
public T caseCommentable(Commentable object)
Returns the result of interpreting the object as an instance of 'Commentable'. 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 'Commentable'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseArrayInitializationValue
public T caseArrayInitializationValue(ArrayInitializationValue object)
Returns the result of interpreting the object as an instance of 'Array Initialization Value'. 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 'Array Initialization Value'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseLambdaBody
public T caseLambdaBody(LambdaBody object)
Returns the result of interpreting the object as an instance of 'Lambda Body'. 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 'Lambda Body'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseExpression
public T caseExpression(Expression object)
Returns the result of interpreting the object as an instance of '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 'Expression'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseAnnotationValue
public T caseAnnotationValue(AnnotationValue object)
Returns the result of interpreting the object as an instance of 'Annotation Value'. 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 'Annotation Value'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseAssignmentExpressionChild
public T caseAssignmentExpressionChild(AssignmentExpressionChild object)
Returns the result of interpreting the object as an instance of 'Assignment Expression Child'. 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 'Assignment Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseConditionalExpressionChild
public T caseConditionalExpressionChild(ConditionalExpressionChild object)
Returns the result of interpreting the object as an instance of 'Conditional Expression Child'. 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 'Conditional Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseConditionalOrExpressionChild
public T caseConditionalOrExpressionChild(ConditionalOrExpressionChild object)
Returns the result of interpreting the object as an instance of 'Conditional Or Expression Child'. 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 'Conditional Or Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseConditionalAndExpressionChild
public T caseConditionalAndExpressionChild(ConditionalAndExpressionChild object)
Returns the result of interpreting the object as an instance of 'Conditional And Expression Child'. 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 'Conditional And Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseInclusiveOrExpressionChild
public T caseInclusiveOrExpressionChild(InclusiveOrExpressionChild object)
Returns the result of interpreting the object as an instance of 'Inclusive Or Expression Child'. 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 'Inclusive Or Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseExclusiveOrExpressionChild
public T caseExclusiveOrExpressionChild(ExclusiveOrExpressionChild object)
Returns the result of interpreting the object as an instance of 'Exclusive Or Expression Child'. 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 'Exclusive Or Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseAndExpressionChild
public T caseAndExpressionChild(AndExpressionChild object)
Returns the result of interpreting the object as an instance of 'And Expression Child'. 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 'And Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseEqualityExpressionChild
public T caseEqualityExpressionChild(EqualityExpressionChild object)
Returns the result of interpreting the object as an instance of 'Equality Expression Child'. 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 'Equality Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseInstanceOfExpressionChild
public T caseInstanceOfExpressionChild(InstanceOfExpressionChild object)
Returns the result of interpreting the object as an instance of 'Instance Of Expression Child'. 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 'Instance Of Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseRelationExpressionChild
public T caseRelationExpressionChild(RelationExpressionChild object)
Returns the result of interpreting the object as an instance of 'Relation Expression Child'. 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 Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseShiftExpressionChild
public T caseShiftExpressionChild(ShiftExpressionChild object)
Returns the result of interpreting the object as an instance of 'Shift Expression Child'. 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 'Shift Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseAdditiveExpressionChild
public T caseAdditiveExpressionChild(AdditiveExpressionChild object)
Returns the result of interpreting the object as an instance of 'Additive Expression Child'. 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 'Additive Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseMultiplicativeExpressionChild
public T caseMultiplicativeExpressionChild(MultiplicativeExpressionChild object)
Returns the result of interpreting the object as an instance of 'Multiplicative Expression Child'. 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 'Multiplicative Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseUnaryExpressionChild
public T caseUnaryExpressionChild(UnaryExpressionChild object)
Returns the result of interpreting the object as an instance of 'Unary Expression Child'. 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 'Unary Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseUnaryModificationExpressionChild
public T caseUnaryModificationExpressionChild(UnaryModificationExpressionChild object)
Returns the result of interpreting the object as an instance of 'Unary Modification Expression Child'. 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 'Unary Modification Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseMethodReferenceExpressionChild
public T caseMethodReferenceExpressionChild(MethodReferenceExpressionChild object)
Returns the result of interpreting the object as an instance of 'Method Reference Expression Child'. 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 'Method Reference Expression Child'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
casePrimaryExpression
public T casePrimaryExpression(PrimaryExpression object)
Returns the result of interpreting the object as an instance of 'Primary 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 'Primary Expression'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseTypeArgumentable
public T caseTypeArgumentable(TypeArgumentable object)
Returns the result of interpreting the object as an instance of 'Type Argumentable'. 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 Argumentable'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
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)
- Generated class or method.
-
caseResource
public T caseResource(Resource object)
Returns the result of interpreting the object as an instance of 'Resource'. 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 'Resource'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseAnnotable
public T caseAnnotable(Annotable object)
Returns the result of interpreting the object as an instance of 'Annotable'. 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 'Annotable'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseArrayTypeable
public T caseArrayTypeable(ArrayTypeable object)
Returns the result of interpreting the object as an instance of 'Array Typeable'. 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 'Array Typeable'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
caseCallTypeArgumentable
public T caseCallTypeArgumentable(CallTypeArgumentable object)
Returns the result of interpreting the object as an instance of 'Call Type Argumentable'. 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 'Call Type Argumentable'.
- See Also:
doSwitch(EObject)
- Generated class or method.
-
defaultCase
public T defaultCase(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.- Overrides:
defaultCase
in classSwitch<T>
- Parameters:
object
- the target of the switch.- Returns:
- the result of interpreting the object as an instance of 'EObject'.
- See Also:
Switch.doSwitch(org.eclipse.emf.ecore.EObject)
- Generated class or method.
-
-