vote up 5 vote down star
1

Is it good for develop MVC Framework by using J2ME (Resource,Speed,Performance,...)?

flag

3 Answers

vote up 3 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
Only a portion of mobile applications communicate with some external server. Even among those, many store cached data. You have much more than just the view in any of these. Almost all of them will (or can) implement a controller, and many will implement either a full model at least a DAL wrapper. – JoshJordan May 22 at 18:31
vote up 0 vote down

Yes, MVC eases the design process and promotes portability. Check out PureMVC . The J2ME version is in alpha. Nokia is using it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.