Packagecom.demonsters.debugger
Classpublic class MonsterDebuggerData
InheritanceMonsterDebuggerData Inheritance Object

The Monster Debugger shared data.



Public Properties
 PropertyDefined By
  bytes : ByteArray
Get the raw bytes.
MonsterDebuggerData
  data : Object
[read-only] Get the data object.
MonsterDebuggerData
  id : String
[read-only] Get the plugin id.
MonsterDebuggerData
Public Methods
 MethodDefined By
  
MonsterDebuggerData(id:String, data:Object)
Shared data class between the client and desktop application.
MonsterDebuggerData
  
read(bytes:ByteArray):MonsterDebuggerData
[static] Convert raw bytes to a MonsterDebuggerData object.
MonsterDebuggerData
Property Detail
bytesproperty
bytes:ByteArray

Get the raw bytes.


Implementation
    public function get bytes():ByteArray
    public function set bytes(value:ByteArray):void
dataproperty 
data:Object  [read-only]

Get the data object.


Implementation
    public function get data():Object
idproperty 
id:String  [read-only]

Get the plugin id.


Implementation
    public function get id():String
Constructor Detail
MonsterDebuggerData()Constructor
public function MonsterDebuggerData(id:String, data:Object)

Shared data class between the client and desktop application.

Parameters
id:String — The plugin id
 
data:Object — The data to send over the socket connection
Method Detail
read()method
public static function read(bytes:ByteArray):MonsterDebuggerData

Convert raw bytes to a MonsterDebuggerData object.

Parameters

bytes:ByteArray — The raw bytes to convert

Returns
MonsterDebuggerData