Open Source
eclp_rcp.txt
Associated article: Eclipse 3.0's Rich Client Platform
Tags: Open Source
Published source code accompanying the article by Gene Sally in which he examines the Rich Client Platform of Eclipse 3.0. Also see ECLP_RCP.ZIP.
Eclipse 3.0's Rich Client Platform
by Gene Sally
Listing One
public class CUserInterface {
private Display m_display;
public void go(String[] args) {
m_display = new Display();
Shell shell = new Shell(m_display);
CAppDialog targetDialog = new CAppDialog(shell, null);
// hopefully this ...


