Or even in AIR, if I recall correctly. But there are workarounds, I think. Anyone recall what they are? Douglas On Feb 3, 2008 11:45 PM, ben.clinkinbeard...
I can run an exe file using a java bridge (look at ARTEMIS project). I've seen COMMANDO (http://code.google.com/p/commando-for-flex/wiki/Welcome) project, but...
Sounds like cairgorm documentation is now flexcoders.. ... From: Douglas McCarroll To: cairngorm-documentation@yahoogroups.com Sent: Monday, February 04, 2008...
Hi, I'm trying to get my Flex application, which I'm using Cairngorm, to use utility classes for all the form validation, and other jobs that don' involve...
Typically you would consider these business logic specific classes as "Helpers". I recommend you create a package called helpers and add all business specific...
OK. I expect this has already been covered somewhere, but I couldn't find it after searching, (or more likely I couldn't figure out the right things to search...
I'm really interested in the answer to this also. I've broken the rule once in the current app we're working on and put some logic into the model but all other...
I'm not an expert on Cairngorm, actually just recently finished the same process you are at - trying to sell Cairngorm to collegues. I'd say, that the cart...
I don't think your cart would be a VO. VOs are generally dumb property containers (like you said) that are used to communicate between app tiers. So unless you...
At the beginning I also found this point confusing. What we do with our experience is to separate the business concept and the model concept. The model concept...
Hello all, From what I understand Value Object originated from the Data Transfer Object in Java and is only for moving data around - not processing it. Back...
Actually .. I thought about it and I don't think it may have been 100% correct or clear about what I said regarding the role of a model object. Paraphrasing...
Hi all, I believe important is that you keep thinking adhering to OOP concepts and not let Cairngorm get in that way of doing so. Cairngorm can fit very well...
Regarding my blog series I would like to add that my attempt of this was to show a simple example that extracts some logic out of views into testable model...
Thanks so much for your clarification, Alex. I guess I could retreat to calling myself a "Cairngorm puritan" ... but then agian, you guys at Adobe EMEA put...
Hi Evan, I agree once you have scenarios with code generation the approach not to have a DTO layer might be difficult. The alternative approach of translating...
I've been following this thread and I liked the suggestion above that uses the VOs (which in my book should just be called DTOs) for the transport, and someone...
Hey Alex, I may be missing something important (unit testing?), but why should a VO not hold state on the client? I usually bring in a DTO off the server, then...
Hi, I'm currently evaluating Cairngorm with other frameworks e.g. PureMVC. So I want to know that does Cairngorm supports multiple nested components, and each...
Hi, Is there a naming conventions for Cairngorm, for example how to name your events, your commands etc, how to structure your folders, that kind of thing. ...
Hi Stephen, As you might have guessed, Cairngorm does not assume any particular naming convention or structure. The "classic" Cairngorm structure can be seen...
For naming, I just follow what Evan suggested above. To take organizing your code futher, you'll probably also want sub-folders off the "classic" structure,...
Todd, That's great, i like your ideas on the folder structure. I'm currently working on a Flex app, which is getting bigger and bigger, so I need to start...
... VO not hold state on the client? It really depends on your project. I wouldn't want to give a black and white answer on this. I don't see it generally...
Hi, Hope this will help. Project Name ... From: stephen50232 <stephenadams1@...> To: cairngorm-documentation@yahoogroups.com Sent: Friday, February 8,...
You've made some good points there Alex. It seems like the DTOs only make sense on the client if they were created for the client. Any change in the DTO would...
I was reading through the source in attempt to fully grok the architecture, and I came across some code that has be a bit bewildered. I'm certainly not yet...
The documentation on the constructor of this class contradicts itself. CairngormEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false) ...