show/hide this revision's text 2 more explicit title

Please help with What does this this ActionScript syntax mean? ( Syntax for returning Objects Inline )

show/hide this revision's text 1

Please help with this ActionScript syntax

Hi,

I am a Java programmer and need to work on a Flex/ActionScript project right now. I got an example of using ITreeDataDesriptor from Flex 3 Cookbook, but there is one line of actionscript code that's hard for me to understand. I appreciate if someone could explain this a little further.

public function getData(node:Object, model:Object=null):Object
	{
		if (node is Office) {
			return {children:{label:node.name, label:node.address}};
		}
	}

The part that I didn't understand was "{children:{label:node.name, label:node.address}}". Office is simply a value object that contains two String properties: name and address.