> Going on this MVC stuff....where are some good resources?  I 
> know there is all the Fusebox stuff (dont get Simon started ;-)...

For those of you who don't know:

MVC: Model-View-Controller

There are 2 versions, model 1 and model 2.  Model 2 is most widely used (in
Web Apps) within the Java world (JSP/Servlets).

The basic idea is (and I mean basic):

Controller: It's basically what runs the application calling the right
models and views
Model: Effectively, the data storage
View: The view into the data storage (ie output of data)

Very useful, but listeners are discussed with MVC.  Listeners tell a view to
change if the data changes (in simple terms).  With the web, the view is
static, a "snapshot" if you will of the current "Model".

So my question is, is it important to implement listeners?  For web only,
then I'm thinking no, but if you are creating views for Java, Web Services,
Flash, then does a listener need to be implemented, and if so how?

Paul



--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to