public class ConceptualSwitch<T>
extends java.lang.Object
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.
ConceptualPackage| Constructor and Description |
|---|
ConceptualSwitch()
Creates an instance of the switch.
|
| Modifier and Type | Method and Description |
|---|---|
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. |
public ConceptualSwitch()
public T doSwitch(EObject theEObject)
caseXXX for each class of the model until one returns a non null result; it yields that result.
caseXXX call.public T caseConceptualModel(ConceptualModel object)
object - the target of the switch.doSwitch(EObject)public T caseAbstractConceptualElement(AbstractConceptualElement object)
object - the target of the switch.doSwitch(EObject)public T caseTermUnit(TermUnit object)
object - the target of the switch.doSwitch(EObject)public T caseConceptualContainer(ConceptualContainer object)
object - the target of the switch.doSwitch(EObject)public T caseFactUnit(FactUnit object)
object - the target of the switch.doSwitch(EObject)public T caseAbstractConceptualRelationship(AbstractConceptualRelationship object)
object - the target of the switch.doSwitch(EObject)public T caseConceptualRelationship(ConceptualRelationship object)
object - the target of the switch.doSwitch(EObject)public T caseBehaviorUnit(BehaviorUnit object)
object - the target of the switch.doSwitch(EObject)public T caseRuleUnit(RuleUnit object)
object - the target of the switch.doSwitch(EObject)public T caseScenarioUnit(ScenarioUnit object)
object - the target of the switch.doSwitch(EObject)public T caseConceptualFlow(ConceptualFlow object)
object - the target of the switch.doSwitch(EObject)public T caseConceptualElement(ConceptualElement object)
object - the target of the switch.doSwitch(EObject)public T caseConceptualRole(ConceptualRole object)
object - the target of the switch.doSwitch(EObject)public T caseElement(Element object)
object - the target of the switch.doSwitch(EObject)public T caseModelElement(ModelElement object)
object - the target of the switch.doSwitch(EObject)public T caseKDMFramework(KDMFramework object)
object - the target of the switch.doSwitch(EObject)public T caseKDMModel(KDMModel object)
object - the target of the switch.doSwitch(EObject)public T caseKDMEntity(KDMEntity object)
object - the target of the switch.doSwitch(EObject)public T caseKDMRelationship(KDMRelationship object)
object - the target of the switch.doSwitch(EObject)public T defaultCase(EObject object)
object - the target of the switch.#doSwitch(org.eclipse.emf.ecore.EObject)