views:

96

answers:

2
+1  A: 

Take a look at the Eclipse Rich Client Platform. If you want to emulate their look and feel, you might consider building your user interface upon their free (and rather good) open source framework.

Tom
+1  A: 

As other people mentioned eclipse uses it's own library for UI. That library is based on SWT which is better integrated with the native window system. See this article for explanation on how SWT, AWT, and Swing relate to each other. Eclipse Rich Client Platform which is also mentioned here can be observed as a layer above SWT that can make your life much easier if you intend to develop a complex, feature rich application (for example an IDE for the new programming language you made).

draganstankovic