Packagesystem
Interfacepublic interface Serializer
Implementors EdenSerializer, JSONSerializer

Defines what a Serializer have to implements to be integrated in the framework.

Note : Every serializers (eden, json, wddx, etc.) should implement it.



Public Properties
 PropertyDefined By
  indentor : String
The identor String value of the serializer.
Serializer
  prettyIndent : int
The prettyIndent value of the serializer.
Serializer
  prettyPrinting : Boolean
The prettyPrinting value of the serializer.
Serializer
Public Methods
 MethodDefined By
  
deserialize(source:String):*
Deserialize the specified String source representation.
Serializer
  
serialize(value:*):String
Serialize the specified object.
Serializer
Property Detail
indentorproperty
indentor:String

The identor String value of the serializer.


Implementation
    public function get indentor():String
    public function set indentor(value:String):void
prettyIndentproperty 
prettyIndent:int

The prettyIndent value of the serializer.


Implementation
    public function get prettyIndent():int
    public function set prettyIndent(value:int):void
prettyPrintingproperty 
prettyPrinting:Boolean

The prettyPrinting value of the serializer.


Implementation
    public function get prettyPrinting():Boolean
    public function set prettyPrinting(value:Boolean):void
Method Detail
deserialize()method
public function deserialize(source:String):*

Deserialize the specified String source representation.

Parameters

source:String

Returns
*
serialize()method 
public function serialize(value:*):String

Serialize the specified object.

Parameters

value:*

Returns
String