Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse RCP app with MVC

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

like image 281
geejay Avatar asked Mar 03 '10 16:03

geejay


People also ask

What is RCP in Eclipse?

While the Eclipse platform is designed to serve as an open tools platform, it is architected so that its components could be used to build just about any client application. The minimal set of plug-ins needed to build a rich client application is collectively known as the Rich Client Platform.

What is RCP framework?

The Rich Client Platform (RCP) is an exciting new way to build Java applications that can compete with native applications on any platform. This tutorial is designed to get you started building RCP applications quickly.


1 Answers

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:

http://img97.i_mageshack.us/img97/2492/mvc1.png

http://img9.i_mageshack.us/img9/6289/mvc2l.png

like image 114
VonC Avatar answered Sep 21 '22 16:09

VonC