On 3/24/06, Doug Hughes <[EMAIL PROTECTED]> wrote: > Stupid question: > > What use would cfproperty tags be in the record? No instance data is > exposed publicly, only via getters/setters.
<cfproperty/> defines how the CFC/AS mapping should be done. The mapping respects get/set methods. Therefore if you have getFoo() / setFoo() and <cfproperty name="foo"/> then Flex 2 can automatically interop with your bean. It isn't about instance data, per se. However, outside of the assembler (see my upcoming response to Jared), you *could* natively use Reactor records to interact with Flex *if* you added <cfproperty/> tags. -- Sean A Corfield -- http://corfield.org/ Got frameworks? "If you're not annoying somebody, you're not really alive." -- Margaret Atwood -- Reactor for ColdFusion Mailing List -- [email protected] -- Archives at http://www.mail-archive.com/reactor%40doughughes.net/

