protected static MappingPackage
| modelPackage
The cached model package
Constructor Summary
|
MappingSwitch()
Creates an instance of the switch
|
Methods inherited from class java.lang.Object
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
|
modelPackage
protected static MappingPackage modelPackage
- The cached model package
MappingSwitch
public MappingSwitch()
- Creates an instance of the switch.
doSwitch
public Object 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 Object 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 Object 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.
caseMappingHelper
public Object caseMappingHelper(MappingHelper object)
- Returns the result of interpretting the object as an instance of 'Helper'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Helper'.
- See Also:
- doSwitch(EObject)
caseMapping
public Object caseMapping(Mapping object)
- Returns the result of interpretting the object as an instance of 'Mapping'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Mapping'.
- See Also:
- doSwitch(EObject)
caseTypeConverter
public Object caseTypeConverter(TypeConverter object)
- Returns the result of interpretting the object as an instance of 'Type Converter'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Type Converter'.
- See Also:
- doSwitch(EObject)
caseFunctionPair
public Object caseFunctionPair(FunctionPair object)
- Returns the result of interpretting the object as an instance of 'Function Pair'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Function Pair'.
- See Also:
- doSwitch(EObject)
caseFunctionNamePair
public Object caseFunctionNamePair(FunctionNamePair object)
- Returns the result of interpretting the object as an instance of 'Function Name Pair'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Function Name Pair'.
- See Also:
- doSwitch(EObject)
caseMappingStrategy
public Object caseMappingStrategy(MappingStrategy object)
- Returns the result of interpretting the object as an instance of 'Strategy'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Strategy'.
- See Also:
- doSwitch(EObject)
caseMappingRoot
public Object caseMappingRoot(MappingRoot object)
- Returns the result of interpretting the object as an instance of 'Root'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Root'.
- See Also:
- doSwitch(EObject)
caseComplexTypeConverter
public Object caseComplexTypeConverter(ComplexTypeConverter object)
- Returns the result of interpretting the object as an instance of 'Complex Type Converter'.
This implementation returns null;
returning a non-null result will terminate the switch.
- Parameters:
- object - the target of the switch.
- Returns:
- the result of interpretting the object as an instance of 'Complex Type Converter'.
- See Also:
- doSwitch(EObject)
defaultCase
public Object defaultCase(EObject object)
- Returns the result of interpretting 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 interpretting the object as an instance of 'EObject'.
- See Also:
- doSwitch(org.eclipse.emf.ecore.EObject)
|