RCP Concepts

From CDOT Wiki
Jump to: navigation, search

Components of the Eclipse RCP platform

The following components make up the Eclipse RCP platform [1]:

Architecture20.gif tutorial [2]

OSGi / Equinox

OSGi is a standard Java framework for developing modular applications. OSGi provides a runtime environment for software modules (so-called bundles or plug-ins ) ready. Eclipse-based applications on the Eclipse's OSGi implementation Eclipse Equinox .

Eclipse Core Runtime

Core runtime provides general, non-UI related functionality for Eclipse applications. It manages the life cycle of Eclipse applications, is therefore responsible for launching and initialization of the application.

Standard Widget Toolkit (SWT)

SWT is the UI toolkit of Eclipse platform. Eclipse RCP applications are not based on the Java GUI framework swing , but rather a private SWT GUI framework, which is native UI widgets of the underlying operating system.

Installing examples via the Update Manager

The Eclipse SDK examples are found on the Eclipse project update site. To locate and install them into a product:

  1. Open the main update manager by clicking Help > Install New Software....
  2. This opens the Install Wizard.
  3. Select The Eclipse Project Updates site.
  4. Ensure Group items by category is unchecked.
  5. Type "Eclipse SDK Examples" in the search field.
  6. Select "Eclipse SDK Examples" and click Next.
  7. Review the items being installed, and click Next.
  8. Review and accept the license terms, and click Finish.
  9. Click Yes when asked to exit and restart the workbench for the changes to take effect.

The examples are now installed in the workbench. Note: you can also click on Apply Now to dynamically install the examples into the current configuration.

Running the Example Launcher

From Eclipse's Window menu, select Show View > Other. In the Show View dialog, expand SWT Examples and select the SWT Example Launcher view. A view containing a list of examples will appear in your current perspective. When you select an example from the list a brief description of the example is displayed. Click on the Run button to launch the example.

JFace

SWT UI Toolkit is limited as a minimal abstraction layer above the UI layer of the operating system. Additional features such as the filling of the UI components using Java model objects are provided in JFace.

JFace is a UI toolkit that provides helper classes for developing UI features that can be tedious to implement. JFace operates above the level of a raw widget system and includes classes for handling common UI programming tasks:

  • Viewers handle the drudgery of populating, sorting, filtering, and updating widgets.
  • Actions and contributions introduce semantics for defining user actions and specifying where to make them available.
  • Image and font registries provide common patterns for handling UI resources.
  • Dialogs and wizards define a framework for building complex interactions with the user.
  • Field assist provides classes that help guide the user in choosing appropriate content for fields in dialogs, wizards, or forms.

JFace frees you up to focus on the implementation of your specific plug-in's function, rather than focusing on the underlying widget system or solving problems that are common in almost any UI application.

An example of how develop a RCP application using JFace table could be found here

Workbench

Based on the above components the Eclipse UI (the Workbench) is ready to expand the plug-ins from the Eclipse IDE workbench to the functions that are necessary for software development. Your own plug-ins using Eclipse RCP Workbench could be developed based on generic templates.

Simple example to use Eclipse UI components to develop RCP applications