ujf.verimag.bip.Core.Behaviors.util
Class BehaviorsSwitch<T>

java.lang.Object
  extended by ujf.verimag.bip.Core.Behaviors.util.BehaviorsSwitch<T>

public class BehaviorsSwitch<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:
BehaviorsPackage

Field Summary
protected static BehaviorsPackage modelPackage
          The cached model package
 
Constructor Summary
BehaviorsSwitch()
          Creates an instance of the switch.
 
Method Summary
 T caseAbstractTransition(AbstractTransition object)
          Returns the result of interpreting the object as an instance of 'Abstract Transition'.
 T caseACExpression(ACExpression object)
          Returns the result of interpreting the object as an instance of 'AC Expression'.
 T caseAction(Action object)
          Returns the result of interpreting the object as an instance of 'Action'.
 T caseAIExpression(AIExpression object)
          Returns the result of interpreting the object as an instance of 'AI Expression'.
 T caseAtomType(AtomType object)
          Returns the result of interpreting the object as an instance of 'Atom Type'.
 T caseBehavior(Behavior object)
          Returns the result of interpreting the object as an instance of 'Behavior'.
 T caseBinding(Binding object)
          Returns the result of interpreting the object as an instance of 'Binding'.
 T caseBipType(BipType object)
          Returns the result of interpreting the object as an instance of 'Bip Type'.
 T caseComponentType(ComponentType object)
          Returns the result of interpreting the object as an instance of 'Component Type'.
 T caseConstant(Constant object)
          Returns the result of interpreting the object as an instance of 'Constant'.
 T caseDataParameter(DataParameter object)
          Returns the result of interpreting the object as an instance of 'Data Parameter'.
 T caseDataType(DataType object)
          Returns the result of interpreting the object as an instance of 'Data Type'.
 T caseDataTypedElement(DataTypedElement object)
          Returns the result of interpreting the object as an instance of 'Data Typed Element'.
 T caseDefinitionBinding(DefinitionBinding object)
          Returns the result of interpreting the object as an instance of 'Definition Binding'.
 T caseExpression(Expression object)
          Returns the result of interpreting the object as an instance of 'Expression'.
 T caseInterfaceVariable(InterfaceVariable object)
          Returns the result of interpreting the object as an instance of 'Interface Variable'.
 T caseMultiTransition(MultiTransition object)
          Returns the result of interpreting the object as an instance of 'Multi Transition'.
 T caseNamedElement(NamedElement object)
          Returns the result of interpreting the object as an instance of 'Named Element'.
 T caseParameterizedElement(ParameterizedElement object)
          Returns the result of interpreting the object as an instance of 'Parameterized Element'.
 T casePartType(PartType object)
          Returns the result of interpreting the object as an instance of 'Part Type'.
 T casePetriNet(PetriNet object)
          Returns the result of interpreting the object as an instance of 'Petri Net'.
 T casePort(Port object)
          Returns the result of interpreting the object as an instance of 'Port'.
 T casePortDefinition(PortDefinition object)
          Returns the result of interpreting the object as an instance of 'Port Definition'.
 T casePortDefinitionReference(PortDefinitionReference object)
          Returns the result of interpreting the object as an instance of 'Port Definition Reference'.
 T casePortExpression(PortExpression object)
          Returns the result of interpreting the object as an instance of 'Port Expression'.
 T casePortReference(PortReference object)
          Returns the result of interpreting the object as an instance of 'Port Reference'.
 T casePortType(PortType object)
          Returns the result of interpreting the object as an instance of 'Port Type'.
 T caseState(State object)
          Returns the result of interpreting the object as an instance of 'State'.
 T caseTraceableElement(TraceableElement object)
          Returns the result of interpreting the object as an instance of 'Traceable Element'.
 T caseTransition(Transition object)
          Returns the result of interpreting the object as an instance of 'Transition'.
 T caseTransitionAlternative(TransitionAlternative object)
          Returns the result of interpreting the object as an instance of 'Transition Alternative'.
 T caseVariable(Variable object)
          Returns the result of interpreting the object as an instance of 'Variable'.
 T caseVariableBinding(VariableBinding object)
          Returns the result of interpreting the object as an instance of 'Variable Binding'.
 T caseVariableDefinitionBinding(VariableDefinitionBinding object)
          Returns the result of interpreting the object as an instance of 'Variable Definition Binding'.
 T defaultCase(EObject object)
          Returns the result of interpreting the object as an instance of 'EObject'.
protected  T doSwitch(EClass theEClass, EObject theEObject)
          Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
 T doSwitch(EObject theEObject)
          Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
protected  T doSwitch(int classifierID, 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

modelPackage

protected static BehaviorsPackage modelPackage
The cached model package

Constructor Detail

BehaviorsSwitch

public BehaviorsSwitch()
Creates an instance of the switch.

Method Detail

doSwitch

public T doSwitch(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 T doSwitch(EClass theEClass,
                     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 T doSwitch(int classifierID,
                     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.

casePortDefinition

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

caseAtomType

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

caseComponentType

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

casePartType

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

caseBipType

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

caseParameterizedElement

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

caseDataParameter

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

caseDataTypedElement

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

caseDataType

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

caseVariable

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

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)

caseAction

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

casePort

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

caseBinding

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

casePortType

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

caseVariableBinding

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

caseInterfaceVariable

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

caseAbstractTransition

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

caseState

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

caseTransition

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

caseTransitionAlternative

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

caseConstant

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

caseBehavior

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

casePetriNet

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

caseDefinitionBinding

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

casePortDefinitionReference

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

caseMultiTransition

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

caseVariableDefinitionBinding

public T caseVariableDefinitionBinding(VariableDefinitionBinding object)
Returns the result of interpreting the object as an instance of 'Variable Definition Binding'. 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 'Variable Definition Binding'.
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)

caseTraceableElement

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

casePortExpression

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

caseACExpression

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

caseAIExpression

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

casePortReference

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

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.

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)