Class QosannotationsSwitch<T>
- java.lang.Object
-
- org.eclipse.emf.ecore.util.Switch<T>
-
- org.palladiosimulator.pcm.qosannotations.util.QosannotationsSwitch<T>
-
public class QosannotationsSwitch<T> extends Switch<T>
The Switch for the model's inheritance hierarchy. It supports the calldoSwitch(object)to invoke thecaseXXXmethod 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:
QosannotationsPackage- Generated class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static Stringcopyrightprotected static QosannotationsPackagemodelPackageThe cached model package
-
Constructor Summary
Constructors Constructor Description QosannotationsSwitch()Creates an instance of the switch.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TcaseEntity(Entity object)Returns the result of interpreting the object as an instance of 'Entity'.TcaseIdentifier(de.uka.ipd.sdq.identifier.Identifier object)Returns the result of interpreting the object as an instance of 'Identifier'.TcaseNamedElement(NamedElement object)Returns the result of interpreting the object as an instance of 'Named Element'.TcasePCMBaseClass(PCMBaseClass object)Returns the result of interpreting the object as an instance of 'PCM Base Class'.TcasePCMClass(PCMClass object)Returns the result of interpreting the object as an instance of 'PCM Class'.TcaseQoSAnnotations(QoSAnnotations object)Returns the result of interpreting the object as an instance of 'Qo SAnnotations'.TcaseSpecifiedOutputParameterAbstraction(SpecifiedOutputParameterAbstraction object)Returns the result of interpreting the object as an instance of 'Specified Output Parameter Abstraction'.TcaseSpecifiedQoSAnnotation(SpecifiedQoSAnnotation object)Returns the result of interpreting the object as an instance of 'Specified Qo SAnnotation'.TdefaultCase(EObject object)Returns the result of interpreting the object as an instance of 'EObject'.protected TdoSwitch(int classifierID, EObject theEObject)CallscaseXXXfor each class of the model until one returns a non null result; it yields that result.protected booleanisSwitchFor(EPackage ePackage)Checks whether this is a switch for the given package.
-
-
-
Field Detail
-
copyright
public static final String copyright
- See Also:
- Constant Field Values
- Generated class or method.
-
modelPackage
protected static QosannotationsPackage 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:
isSwitchForin 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)
CallscaseXXXfor each class of the model until one returns a non null result; it yields that result.
-
caseSpecifiedQoSAnnotation
public T caseSpecifiedQoSAnnotation(SpecifiedQoSAnnotation object)
Returns the result of interpreting the object as an instance of 'Specified Qo SAnnotation'. 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 'Specified Qo SAnnotation'.
- See Also:
doSwitch(EObject)- Generated class or method.
-
caseQoSAnnotations
public T caseQoSAnnotations(QoSAnnotations object)
Returns the result of interpreting the object as an instance of 'Qo SAnnotations'. 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 'Qo SAnnotations'.
- See Also:
doSwitch(EObject)- Generated class or method.
-
caseSpecifiedOutputParameterAbstraction
public T caseSpecifiedOutputParameterAbstraction(SpecifiedOutputParameterAbstraction object)
Returns the result of interpreting the object as an instance of 'Specified Output Parameter Abstraction'. 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 'Specified Output Parameter Abstraction'.
- See Also:
doSwitch(EObject)- Generated class or method.
-
casePCMClass
public T casePCMClass(PCMClass object)
Returns the result of interpreting the object as an instance of 'PCM 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 'PCM Class'.
- See Also:
doSwitch(EObject)- Generated class or method.
-
casePCMBaseClass
public T casePCMBaseClass(PCMBaseClass object)
Returns the result of interpreting the object as an instance of 'PCM Base 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 'PCM Base Class'.
- See Also:
doSwitch(EObject)- Generated class or method.
-
caseIdentifier
public T caseIdentifier(de.uka.ipd.sdq.identifier.Identifier object)
Returns the result of interpreting the object as an instance of '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 'Identifier'.
- 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.
-
caseEntity
public T caseEntity(Entity object)
Returns the result of interpreting the object as an instance of 'Entity'. 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 'Entity'.
- 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:
defaultCasein 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.
-
-