Alvin
Alvin

Reputation: 10458

Eclipse RCP terminologies and concepts

I am just starting to develop some application using Eclipse RCP. I was able to hack out a prototype by reading some tutorials. Although I was able to hack out some working code, I found myself shaky on some of the RCP concepts like:

The above are just a sample of questions I am having, so it would really help me if someone can point me to some articles explain these type of concepts (I did google around without success).

I would also appreciate it if someone can point me to some articles that can educate me on how to write clean RCP code; kind of like the "Effective Java" for RCP.

Upvotes: 0

Views: 542

Answers (2)

Tom Seidel
Tom Seidel

Reputation: 9535

Take a look at the JavaDoc for the Interfaces, they are well documented and give you an idea of the terminology. For example:

What is a page?

Look at the Javadoc at org.eclipse.ui.IWorkbenchPage

called getSite(),

Look at the Javadoc at org.eclipse.ui.IViewSite

Upvotes: 2

Prakash G. R.
Prakash G. R.

Reputation: 4892

You may want to check this as well:

Upvotes: 3

Related Questions