and ArrayCollection in Flex On Mon, Mar 8, 2010 at 11:57 AM, Vaibhav Seth <[email protected]>wrote:
> Try using List in Java > > > > > On Mon, Mar 8, 2010 at 7:06 AM, rakshith <[email protected]> wrote: > >> Hi, >> I want to know how to map an array from my action script to java. >> I am using Blazeds. >> >> Say a small code snippet goes something like this ::::::::: >> >> Person.as >> >> package >> { >> [RemoteClass(alias="example.Person")] >> >> [Bindable] >> public class Person >> { >> >> public var lastName:String ; >> public var phone:String; >> public var objarray:Array; >> >> public function Person() >> { >> >> >> } >> >> } >> } >> >> now how does the java class look like on the other end to map the >> objarray of the Person.as class? >> I did try using the following class::::::::::::: >> >> Person.java >> >> package example; >> >> public class Person { >> >> public String lastName; >> >> public String phone; >> >> public Object[] objarray; >> >> public Person() { >> } >> } >> >> >> >> Please do help me out..Its urgent.... >> Thanks.. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Flex India Community" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]<flex_india%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/flex_india?hl=en. >> >> > > > -- > Thanks, > Vaibhav Seth. > > -- Thanks, Vaibhav Seth. -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.

