On Thu, Sep 11, 2008 at 4:39 AM, cs01rsw <[EMAIL PROTECTED]> wrote: > however if we build up the cfc through the cfeclipse cfc builder then > it creates all variables as properties using the cfproperty tag
cfproperty is just metadata - it doesn't actually set any variables. A lot of people use variables.instance to contain the "important" data in their CFC (usually stuff they want to persist) as opposed to other stuff (like cached computed values or state information that is not persisted). Personally, I just use variables scope directly for my attributes. -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "model-glue" 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/model-glue?hl=en For more about Model-Glue, check http://www.model-glue.com . -~----------~----~----~----~------~----~------~--~---
