| Package | com.ericfeminella.debugger |
| Class | public final class LocalDebugger |
| Method | Defined by | ||
|---|---|---|---|
|
allowConnection(allow:Boolean = false):void
[static]
Terminates / allows all connections to LocalDebugger
| LocalDebugger | ||
|
connected():Boolean
[static]
Determines if a connection to LocalDebugger is established
| LocalDebugger | ||
|
send(obj:*):void
[static]
Handles tracing objects to the console output window.
| LocalDebugger | ||
|
show(message:*):void
[static]
Displays a message in an mx.controls.Alert window
| LocalDebugger | ||
|
trace(obj:*):void
[static]
Handles recursively tracing objects to the console output window.
| LocalDebugger | ||
| allowConnection | () | method |
public static function allowConnection(allow:Boolean = false):voidTerminates / allows all connections to LocalDebugger
Parametersallow:Boolean (default = false) — if the connection is to be allowed
|
| connected | () | method |
public static function connected():BooleanDetermines if a connection to LocalDebugger is established
ReturnsBoolean — specifies if the connection is established
|
| send | () | method |
public static function send(obj:*):voidHandles tracing objects to the console output window.
Parametersobj:* — object to trace to the console
|
| show | () | method |
public static function show(message:*):voidDisplays a message in an mx.controls.Alert window
Parametersmessage:* — message to display in an Alert window
|
| trace | () | method |
public static function trace(obj:*):voidHandles recursively tracing objects to the console output window.
If the object is of simple type the object will be sent directly to the console window. If the object is of complex type, it will be passed to LocalDebuggerTraceHelper to recursively trace all elements of the object
Parametersobj:* — object to trace to the console
|