public static String outTypeName()

in debugger/src/main/java/flash/tools/debugger/concrete/DMessage.java [807:1015]


	public static String outTypeName(int type)
	{
		String s = "OutUnknown(" + type + ")"; //$NON-NLS-1$ //$NON-NLS-2$

		switch(type)
		{
			case OutZoomIn:
				s = "OutZoomIn"; //$NON-NLS-1$
				break;

			case OutZoomOut:
				s = "OutZoomOut"; //$NON-NLS-1$
				break;

			case OutZoom100:
				s = "OutZoom100"; //$NON-NLS-1$
				break;

			case OutHome:
				s = "OutHome"; //$NON-NLS-1$
				break;

			case OutSetQuality:
				s = "OutSetQuality"; //$NON-NLS-1$
				break;

			case OutPlay:
				s = "OutPlay"; //$NON-NLS-1$
				break;

			case OutLoop:
				s = "OutLoop"; //$NON-NLS-1$
				break;

			case OutRewind:
				s = "OutRewind"; //$NON-NLS-1$
				break;

			case OutForward:
				s = "OutForward"; //$NON-NLS-1$
				break;

			case OutBack:
				s = "OutBack"; //$NON-NLS-1$
				break;

			case OutPrint:
				s = "OutPrint"; //$NON-NLS-1$
				break;

			case OutSetVariable:
				s = "OutSetVariable"; //$NON-NLS-1$
				break;

			case OutSetProperty:
				s = "OutSetProperty"; //$NON-NLS-1$
				break;

			case OutExit:
				s = "OutExit"; //$NON-NLS-1$
				break;

			case OutSetFocus:
				s = "OutSetFocus"; //$NON-NLS-1$
				break;

			case OutContinue:
				s = "OutContinue"; //$NON-NLS-1$
				break;

			case OutStopDebug:
				s = "OutStopDebug"; //$NON-NLS-1$
				break;

			case OutSetBreakpoints:
				s = "OutSetBreakpoints"; //$NON-NLS-1$
				break;

			case OutRemoveBreakpoints:
				s = "OutRemoveBreakpoints"; //$NON-NLS-1$
				break;

			case OutRemoveAllBreakpoints:
				s = "OutRemoveAllBreakpoints"; //$NON-NLS-1$
				break;

			case OutStepOver:
				s = "OutStepOver"; //$NON-NLS-1$
				break;

			case OutStepInto:
				s = "OutStepInto"; //$NON-NLS-1$
				break;

			case OutStepOut:
				s = "OutStepOut"; //$NON-NLS-1$
				break;

			case OutProcessedTag:
				s = "OutProcessedTag"; //$NON-NLS-1$
				break;

			case OutSetSquelch:
				s = "OutSetSquelch"; //$NON-NLS-1$
				break;

			case OutGetVariable:
				s = "OutGetVariable"; //$NON-NLS-1$
				break;

			case OutGetFrame:
				s = "OutGetFrame"; //$NON-NLS-1$
				break;

			case OutGetOption:
				s = "OutGetOption"; //$NON-NLS-1$
				break;

			case OutSetOption:
				s = "OutSetOption"; //$NON-NLS-1$
				break;

			case OutAddWatch:
				s = "OutAddWatch"; //$NON-NLS-1$
				break;

			case OutRemoveWatch:
				s = "OutRemoveWatch"; //$NON-NLS-1$
				break;

			case OutStepContinue:
				s = "OutStepContinue"; //$NON-NLS-1$
				break;

			case OutGetSwf:
				s = "OutGetSwf"; //$NON-NLS-1$
				break;

			case OutGetSwd:
				s = "OutGetSwd"; //$NON-NLS-1$
				break;

			case OutGetVariableWhichInvokesGetter:
				s = "OutGetVariableWhichInvokesGetter"; //$NON-NLS-1$
				break;

			case OutGetBreakReason:
				s = "OutGetBreakReason"; //$NON-NLS-1$
				break;

			case OutGetActions:
				s = "OutGetActions"; //$NON-NLS-1$
				break;

			case OutSetActions:
				s = "OutSetActions"; //$NON-NLS-1$
				break;

			case OutSwfInfo:
				s = "OutSwfInfo"; //$NON-NLS-1$
				break;

			case OutConstantPool:
				s = "OutConstantPool"; //$NON-NLS-1$
				break;

            case OutGetFncNames:
                s = "OutGetFncNames"; //$NON-NLS-1$
                break;

            case OutCallFunction:
            	s = "OutCallFunction"; //$NON-NLS-1$
            	break;
            	
            case OutAddWatch2:
            	s = "OutAddWatch2"; //$NON-NLS-1$
            	break;
            	
            case OutRemoveWatch2:
            	s = "OutRemoveWatch2"; //$NON-NLS-1$
            	break;

            case OutPassAllExceptionsToDebugger:
            	s = "OutPassAllExceptionsToDebugger"; //$NON-NLS-1$
            	break;

            case OutBinaryOp:
            	s = "OutBinaryOp"; //$NON-NLS-1$
            	break;
            	
            case OutIsolateEnumerate:
            	s = "OutIsolateEnumerate"; //$NON-NLS-1$
            	break;
            	
            case OutSetActiveIsolate:
            	s = "OutSetActiveIsolate"; //$NON-NLS-1$
            	break;
            	
            case OutSetExceptionBreakpoint:
            	s = "OutSetExceptionBreakpoint"; //$NON-NLS-1$
            	break;
            	
            case OutRemoveExceptionBreakpoint:
            	s = "OutRemoveExceptionBreakpoint"; //$NON-NLS-1$
            	break;
            	
		}
   		return s;
	}