@Override
protected T doSwitch(int classifierID, EObject theEObject) {
switch(classifierID) {
case BlocksPackage.BLOCK:
{
Block block = (Block)theEObject;
T result = caseBlock(block);
if(result == null)
result = defaultCase(theEObject);
return result;
}