views:

300

answers:

1

Is MVC achievable in RCP? If so, what frameworks are out there to achieve MVC in an Eclipse RCP app?

+1  A: 

The latest on MVC in RCP can be found in this presentation:

Eclipse Data Binding - Updating RCP Mail 2.0 Handout

The main notions in RCP are:

  • Observable
  • Bindings

because a RCP application tends to go from MVC to a more flat dependency:

alt text

alt text

VonC