Cast Xml loaded data into value object

Hi

This might have been asked earlier, but i didn’t find any post to related to this.

My question is that can you cast loaded xml data into flash value object ?
for example:
pagedata.xml:


<?xml version="1.0" ?>
<pageData>
    <title>test page</title>
    <content>blaa blaa blaa blaa</content>
    <updated>2008-02-21 18:00</updated>
</pageData> 

to this as3 class
PageVO.as


package com.myDomain.vo {
public class pageData {
public var title:String
public var content:String
public var updated:Date
}
}

is this possible?