org.eclipse.gmt.modisco.omg.kdm.conceptual.util
Class ConceptualSwitch<T>

java.lang.Object
  extended by org.eclipse.gmt.modisco.omg.kdm.conceptual.util.ConceptualSwitch<T>

public class ConceptualSwitch<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:
ConceptualPackage
Generated:

Constructor Summary
ConceptualSwitch()
          Creates an instance of the switch.
 
Method Summary
 T caseAbstractConceptualElement(AbstractConceptualElement object)
          Returns the result of interpreting the object as an instance of 'Abstract Conceptual Element'.
 T caseAbstractConceptualRelationship(AbstractConceptualRelationship object)
          Returns the result of interpreting the object as an instance of 'Abstract Conceptual Relationship'.
 T caseBehaviorUnit(BehaviorUnit object)
          Returns the result of interpreting the object as an instance of 'Behavior Unit'.
 T caseConceptualContainer(ConceptualContainer object)
          Returns the result of interpreting the object as an instance of 'Container'.
 T caseConceptualElement(ConceptualElement object)
          Returns the result of interpreting the object as an instance of 'Element'.
 T caseConceptualFlow(ConceptualFlow object)
          Returns the result of interpreting the object as an instance of 'Flow'.
 T caseConceptualModel(ConceptualModel object)
          Returns the result of interpreting the object as an instance of 'Model'.
 T caseConceptualRelationship(ConceptualRelationship object)
          Returns the result of interpreting the object as an instance of 'Relationship'.
 T caseConceptualRole(ConceptualRole object)
          Returns the result of interpreting the object as an instance of 'Role'.
 T caseElement(Element object)
          Returns the result of interpreting the object as an instance of 'Element'.
 T caseFactUnit(FactUnit object)
          Returns the result of interpreting the object as an instance of 'Fact Unit'.
 T caseKDMEntity(KDMEntity object)
          Returns the result of interpreting the object as an instance of 'KDM Entity'.
 T caseKDMFramework(KDMFramework object)
          Returns the result of interpreting the object as an instance of 'KDM Framework'.
 T caseKDMModel(KDMModel object)
          Returns the result of interpreting the object as an instance of 'KDM Model'.
 T caseKDMRelationship(KDMRelationship object)
          Returns the result of interpreting the object as an instance of 'KDM Relationship'.
 T caseModelElement(ModelElement object)
          Returns the result of interpreting the object as an instance of 'Model Element'.
 T caseRuleUnit(RuleUnit object)
          Returns the result of interpreting the object as an instance of 'Rule Unit'.
 T caseScenarioUnit(ScenarioUnit object)
          Returns the result of interpreting the object as an instance of 'Scenario Unit'.
 T caseTermUnit(TermUnit object)
          Returns the result of interpreting the object as an instance of 'Term Unit'.
 T defaultCase(EObject object)
          Returns the result of interpreting the object as an instance of 'EObject'.
 T doSwitch(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

ConceptualSwitch

public ConceptualSwitch()
Creates an instance of the switch.

Generated:
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.
Generated:

caseConceptualModel

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

caseAbstractConceptualElement

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

caseTermUnit

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

caseConceptualContainer

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

caseFactUnit

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

caseAbstractConceptualRelationship

public T caseAbstractConceptualRelationship(AbstractConceptualRelationship object)
Returns the result of interpreting the object as an instance of 'Abstract Conceptual Relationship'. 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 Conceptual Relationship'.
See Also:
doSwitch(EObject)
Generated:

caseConceptualRelationship

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

caseBehaviorUnit

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

caseRuleUnit

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

caseScenarioUnit

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

caseConceptualFlow

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

caseConceptualElement

public T caseConceptualElement(ConceptualElement 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)
Generated:

caseConceptualRole

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

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)
Generated:

caseModelElement

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

caseKDMFramework

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

caseKDMModel

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

caseKDMEntity

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

caseKDMRelationship

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

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)
Generated: