Re: Application State == View or Business Logic

2002-05-15 Thread Ted Husted
The Model represents application state. The View displays the application state. The Controller captures user gestures and selects the View. In a conventional "desktop" MVC application, the View may connect to the Model in order to display the state in "real-time". In remote applications, incl

RE: Application State == View or Business Logic

2002-05-15 Thread Dan Cancro
hanks, Dan > -Original Message- > From: Ted Husted [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 15, 2002 9:44 AM > To: Struts Users Mailing List > Subject: Re: Application State == View or Business Logic > > > In remote applications, including Web applications,

RE: Application State == View or Business Logic

2002-05-15 Thread Robert Taylor
controller. robert > -Original Message- > From: Dan Cancro [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 15, 2002 1:28 PM > To: 'Struts Users Mailing List' > Subject: RE: Application State == View or Business Logic > > > I thought that a view could acce

RE: Application State == View or Business Logic

2002-05-15 Thread Steven Banks
rectly_ accesses the model via the controller. robert > -Original Message- > From: Dan Cancro [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 15, 2002 1:28 PM > To: 'Struts Users Mailing List' > Subject: RE: Application State == View or Business Logic > > >

RE: Application State == View or Business Logic

2002-05-15 Thread Chuck Cavaness
believe the diagram meant >the view _indirectly_ accesses the model via the controller. > >robert > > > -Original Message----- > > From: Dan Cancro [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, May 15, 2002 1:28 PM > > To: 'Struts Users Mailing List' >

RE: Application State == View or Business Logic

2002-05-15 Thread Robert Taylor
To: Struts Users Mailing List > Subject: RE: Application State == View or Business Logic > > > My thinking is that the data transfer objects (also referred to as value > objects) are still part of the model. The view components do access these > as JavaBeans to help render the dy

Re: Application State == View or Business Logic

2002-05-15 Thread Ted Husted
, other > than the activity being located within an action class. > > Is this worth worrying about, or is this just semantics? > > >From: Ted Husted <[EMAIL PROTECTED]> > >To: Struts Users Mailing List <[EMAIL PROTECTED]> > >Subject: Re: Application State ==

RE: Application State == View or Business Logic

2002-05-15 Thread Nelson, Laird
> -Original Message- > From: Robert Taylor [mailto:[EMAIL PROTECTED]] > > My point of contention is with the view or > view helpers containing the logic which actually > interacts with the business layer therefore > circumventing the controller. That is, I wanted > to make the point >