What is the best way to learn Eclipse RCP? Does he only feel me?

I use structural programming (e.g. C), OO programming (e.g. Java), Scripting (e.g. Javascript), Web (e.g. HTML, JSP, Servlets, CSS), etc.

Now, when I start with the development of the Eclipse RCP plugins, all this gives me a strange feeling in terms of programming. The way everything happens in Eclipse RCP is very different from the other languages ​​that I mentioned above, and to be honest, I don’t really like this fact.

Am I the only one who feels this?

What other things do you propose to make my transition to Eclipse RCP better? (if he can feel better).

PS: I already saw this stream, for textbooks, I just wanted to find out how others feel that their development background is like me!

+3
source share
2 answers

It may be different because it is heavily based on OSGI

This includes dividing your application into components, which usually should have a set of responsibilities that can be isolated from the rest of your application using a set of interfaces and class dependencies.

Identifying these dependencies purely by hand can range from being quite simple for a well-designed, highly cohesive, but loosely coupled app with a nightmare for interconnected source code that you are not familiar with.

, RCP , , OSGi, OO.

+7

RCP
1.) RCP - SWT/startup exe/Auto-update. RCP .
2.) RCP. API RCP,

1. Java. , . -
- SWT RCP. , . SWT Swing , SWT-, Swing Swing
- . Eclipse .

RCP, :
- Eclipse. , [: ]
- JVM . JVM ,

+1

Source: https://habr.com/ru/post/1703797/


All Articles