| Package | uk.msfx.utils.tracing.core |
| Class | public class TrCoreFP10 |
| Inheritance | TrCoreFP10 TrCore Object |
Adds Clipboard support
| Property | Defined By | ||
|---|---|---|---|
| copyToClipboard : Boolean
Whether or not to copy the traces to the clipboard
| TrCoreFP10 | ||
| Method | Defined By | ||
|---|---|---|---|
Empty Constructor. | TrCoreFP10 | ||
out(output:*, user:String, withinClass:*, startWithLineBreak:Boolean = false, endWithLineBreak:Boolean = false):void [override]
Function to format and trace to the output console. | TrCoreFP10 | ||
![]() | outArray(output:Array, user:String, withinClass:*, level:int = 0):void
Function to format and trace the contents of an Array to the console. | TrCore | |
![]() | outMulti(values:Array, user:String, withinClass:*):void
Function to trace multiple values out, seperated by commas. | TrCore | |
![]() | outObject(output:Object, user:String, withinClass:*, level:int = 0):void
Function to format and trace the contents of an Object to the console. | TrCore | |
| copyToClipboard | property |
copyToClipboard:BooleanWhether or not to copy the traces to the clipboard
public function get copyToClipboard():Boolean public function set copyToClipboard(value:Boolean):void| TrCoreFP10 | () | Constructor |
public function TrCoreFP10()Empty Constructor.
| out | () | method |
override public function out(output:*, user:String, withinClass:*, startWithLineBreak:Boolean = false, endWithLineBreak:Boolean = false):voidFunction to format and trace to the output console.
Extended to provide Clipboard functionality.
Parameters
output:* — The output that you wish to trace to the console
| |
user:String — The name of the user tracing the output
| |
withinClass:* — The name of the Class the output is being traced from
| |
startWithLineBreak:Boolean (default = false) — Whether to start the trace with a line break
| |
endWithLineBreak:Boolean (default = false) — Whether to end the trace with a line break
|