I am passing one ActionScript 3.0 arrayCollection containing multiple objects from Flex to Java side. Below is the arrayCollection:
public var myAC:ArrayCollection = new ArrayCollection([
{label:"A", data:"a"},
{label:"B", data:"b"},
{label:"C", data:"c"}
]);
I am using BlazeDS. I want to iterate over it and use that data in the java method. Please tell me what will be the data type of receiving parameter ? How to extract each object from that?