protected java.lang.Object handleGetStateMachineContext()
{
// TODO: What should this method return ?
// As I've seen in uml1.4 impl, it should return the statemachine which this element is the context for.
// Let's say for UML2: Return the owner if the latter is a StateMachine
StateMachine stateMachine = null;
Element owner = this.metaObject.getOwner();
if(owner instanceof StateMachine)
{
stateMachine = (StateMachine) owner;
}