Configuration and Model-View

Posted by HH on Stack Overflow See other posts from Stack Overflow or by HH
Published on 2010-04-22T16:05:19Z Indexed on 2010/04/22 18:23 UTC
Read the original article Hit count: 232

I am using the Model-View pattern on a small application I'm writing. Here's the scenario: The model maintains a list of directories from where it can extract the data that it needs. The View has a Configuration or a Setting dialog where the user can modify this list of directories (the dialog has a JList displaying the list in addition to add and remove buttons).

I need some advice from the community: The View needs to communicate these changes to the model. I thought first of adding to the model these methods: addDirectory() and removeDirectory(). But I am trying to limit the number of methods (or channels) that the View can use to communicate with and manipulate the model. Is there any good practice for this? Thank you.

© Stack Overflow or respective owner

Related posts about viewmodel

Related posts about design-patterns