Packageorg.apache.flex.collections.parsers
Interfacepublic interface IInputParser
Implementors JSONInputParser

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The IInputParser interface is the basic interface for parsing data from a server or database into an array of items. This interface is generally used in a LazyCollection.

See also

org.apache.flex.net.dataConverters.LazyCollection.


Public Methods
 MethodDefined By
  
parseItems(s:String):Array
Take the input string (could be serialized data set, XML, or JSON) and return an array of serialized data items.
IInputParser
Method Detail
parseItems()method
public function parseItems(s:String):Array

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

Take the input string (could be serialized data set, XML, or JSON) and return an array of serialized data items.

Parameters

s:String — Serialized data set, XML or JSON.

Returns
Array — An Array of serialized data items.