Ok,
I solved the issue, just by itterating through the Object
key's and values's,

Thanks

--- In flexcoders@yahoogroups.com, "yossi.baram" <yossi.ba...@...> 
wrote:
>
> Hi helper, 
> I Have a class in java and one of its properties is: 
> 
> private Map<String,UpperlColumnHeader> upperColumnHeaders; 
> 
> public HashMap<String,UpperlColumnHeader> getUpperColumnHeaders() { 
>         return upperColumnHeaders; 
>     } 
> 
> public void setUpperColumnHeaders
(HashMap<String,UpperlColumnHeader> 
> upperColumnHeaders) { 
>         this.upperColumnHeaders = upperColumnHeaders; 
>     } 
> 
> UpperlColumnHeader is a bean translated to ActionScript class as 
well.
> 
> 
> I am sending the data by RemoteObject to Flex. 
> 
> my identical ActionScript class: 
> 
> [RemoteClass(alias="PresentationModel.PresentationModel")] 
> public class PresentationModel 
> { 
>      // How do I link this Object to UpperlColumnHeader class?  
> (.. "column.UpperlColumnHeader" )
>              public var upperColumnHeaders:Object; 
> } 
> 
> I know Map is translated to Object in Flex. 
> How do I retrieve all elements from this Object? 
> Is my AS is correct? 
> remember the key of the map is String and the value is 
> UpperlColumnHeader AS class i created. 
> 
> Thanks 
> 
> Jo
>


Reply via email to