Method Summary |
|
public Object | caseBox(Box object) Returns the result of interpretting the object as an instance of 'Box'.
This implementation returns null;
returning a non-null result will terminate the switch.
Parameters: object - the target of the switch. |
public Object | caseConnection(Connection object) Returns the result of interpretting the object as an instance of 'Connection'.
This implementation returns null;
returning a non-null result will terminate the switch.
Parameters: object - the target of the switch. |
public Object | caseDecoratorBox(DecoratorBox object) Returns the result of interpretting the object as an instance of 'Decorator Box'.
This implementation returns null;
returning a non-null result will terminate the switch.
Parameters: object - the target of the switch. |
public Object | caseElement(Element object) Returns the result of interpretting 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. |
public Object | caseIEditorInput(IEditorInput object) Returns the result of interpretting the object as an instance of 'IEditor Input'.
This implementation returns null;
returning a non-null result will terminate the switch.
Parameters: object - the target of the switch. |
public Object | caseIProjectElement(IProjectElement object) Returns the result of interpretting the object as an instance of 'IProject Element'.
This implementation returns null;
returning a non-null result will terminate the switch.
Parameters: object - the target of the switch. |
public Object | casePage(Page object) Returns the result of interpretting the object as an instance of 'Page'.
This implementation returns null;
returning a non-null result will terminate the switch.
Parameters: object - the target of the switch. |
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. |
public Object | doSwitch(EObject theEObject) Calls caseXXX for each class of the model until one returns a non null result; it yields that result. |
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. |
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. |