in debugger/src/main/java/flash/tools/debugger/concrete/DMessage.java [566:801]
public static String inTypeName(int type)
{
String s = "InUnknown(" + type + ")"; //$NON-NLS-1$ //$NON-NLS-2$
switch(type)
{
case InSetMenuState:
s = "InSetMenuState"; //$NON-NLS-1$
break;
case InSetProperty:
s = "InSetProperty"; //$NON-NLS-1$
break;
case InExit:
s = "InExit"; //$NON-NLS-1$
break;
case InNewObject:
s = "InNewObject"; //$NON-NLS-1$
break;
case InRemoveObject:
s = "InRemoveObject"; //$NON-NLS-1$
break;
case InTrace:
s = "InTrace"; //$NON-NLS-1$
break;
case InErrorTarget:
s = "InErrorTarget"; //$NON-NLS-1$
break;
case InErrorExecLimit:
s = "InErrorExecLimit"; //$NON-NLS-1$
break;
case InErrorWith:
s = "InErrorWith"; //$NON-NLS-1$
break;
case InErrorProtoLimit:
s = "InErrorProtoLimit"; //$NON-NLS-1$
break;
case InSetVariable:
s = "InSetVariable"; //$NON-NLS-1$
break;
case InDeleteVariable:
s = "InDeleteVariable"; //$NON-NLS-1$
break;
case InParam:
s = "InParam"; //$NON-NLS-1$
break;
case InPlaceObject:
s = "InPlaceObject"; //$NON-NLS-1$
break;
case InScript:
s = "InScript"; //$NON-NLS-1$
break;
case InAskBreakpoints:
s = "InAskBreakpoints"; //$NON-NLS-1$
break;
case InBreakAt:
s = "InBreakAt"; //$NON-NLS-1$
break;
case InContinue:
s = "InContinue"; //$NON-NLS-1$
break;
case InSetLocalVariables:
s = "InSetLocalVariables"; //$NON-NLS-1$
break;
case InSetBreakpoint:
s = "InSetBreakpoint"; //$NON-NLS-1$
break;
case InNumScript:
s = "InNumScript"; //$NON-NLS-1$
break;
case InRemoveScript:
s = "InRemoveScript"; //$NON-NLS-1$
break;
case InRemoveBreakpoint:
s = "InRemoveBreakpoint"; //$NON-NLS-1$
break;
case InNotSynced:
s = "InNotSynced"; //$NON-NLS-1$
break;
case InErrorURLOpen:
s = "InErrorURLOpen"; //$NON-NLS-1$
break;
case InProcessTag:
s = "InProcessTag"; //$NON-NLS-1$
break;
case InVersion:
s = "InVersion"; //$NON-NLS-1$
break;
case InBreakAtExt:
s = "InBreakAtExt"; //$NON-NLS-1$
break;
case InSetVariable2:
s = "InSetVariable2"; //$NON-NLS-1$
break;
case InSquelch:
s = "InSquelch"; //$NON-NLS-1$
break;
case InGetVariable:
s = "InGetVariable"; //$NON-NLS-1$
break;
case InFrame:
s = "InFrame"; //$NON-NLS-1$
break;
case InOption:
s = "InOption"; //$NON-NLS-1$
break;
case InWatch:
s = "InWatch"; //$NON-NLS-1$
break;
case InGetSwf:
s = "InGetSwf"; //$NON-NLS-1$
break;
case InGetSwd:
s = "InGetSwd"; //$NON-NLS-1$
break;
case InErrorException:
s = "InErrorException"; //$NON-NLS-1$
break;
case InErrorStackUnderflow:
s = "InErrorStackUnderflow"; //$NON-NLS-1$
break;
case InErrorZeroDivide:
s = "InErrorZeroDivide"; //$NON-NLS-1$
break;
case InErrorScriptStuck:
s = "InErrorScriptStuck"; //$NON-NLS-1$
break;
case InBreakReason:
s = "InBreakReason"; //$NON-NLS-1$
break;
case InGetActions:
s = "InGetActions"; //$NON-NLS-1$
break;
case InSwfInfo:
s = "InSwfInfo"; //$NON-NLS-1$
break;
case InConstantPool:
s = "InConstantPool"; //$NON-NLS-1$
break;
case InErrorConsole:
s = "InErrorConsole"; //$NON-NLS-1$
break;
case InGetFncNames:
s = "InGetFncNames"; //$NON-NLS-1$
break;
case InCallFunction:
s = "InCallFunction"; //$NON-NLS-1$
break;
case InWatch2:
s = "InWatch2"; //$NON-NLS-1$
break;
case InPassAllExceptionsToDebugger:
s = "InPassAllExceptionsToDebugger"; //$NON-NLS-1$
break;
case InBinaryOp:
s = "InBinaryOp"; //$NON-NLS-1$
break;
case InIsolateCreate:
s = "InIsolateCreate"; //$NON-NLS-1$
break;
case InIsolateExit:
s = "InIsolateExit"; //$NON-NLS-1$
break;
case InIsolateEnumerate:
s = "InIsolateEnumerate"; //$NON-NLS-1$
break;
case InSetActiveIsolate:
s = "InSetActiveIsolate"; //$NON-NLS-1$
break;
case InIsolate:
s = "InIsolate"; //$NON-NLS-1$
break;
case InSetExceptionBreakpoint:
s = "InSetExceptionBreakpoint"; //$NON-NLS-1$
break;
case InRemoveExceptionBreakpoint:
s = "InRemoveExceptionBreakpoint"; //$NON-NLS-1$
break;
}
return s;
}