Is it good for develop MVC Framework by using J2ME (Resource,Speed,Performance,...)?
|
1
|
|
|
|
|
|
MVC is especially appropriate for Mobile applications. These typically have a substantially larger number of specifically purposed user interface modules due to real estate constraints. So the more rigorous attention to SOC that is implied by good MVC design makes keeping the design more tightly focused on single-purpose units that are consistent in their abstractions and play well together. At the same time, this pattern helps partition functionality into modules that can more cleanly defined with solid coherence while being more precise about limited cohesion where it properly belongs. |
||
|
|
|
|
By MVC do you mean model-view-controller? On a mobile device, you only have the view layer don't you? Like if you think about Gmail mobile, all it does is send requests to the server (the controller layer). You'd have quite an interesting application if you had the other two layers on the mobile device! I mean, all applications have to store data, but in my experience, MVC is meant for database-driven applications, isn't it? If you don't have a database then it just seems like you've got no need for MVC. |
||
|
|
|
Yes, MVC eases the design process and promotes portability. Check out PureMVC . The J2ME version is in alpha. Nokia is using it. |
||
|
|
