views:

795

answers:

2

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

+3  A: 

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.

le dorfier
A: 

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