• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Is Netbeans more complicant than eclipse?

 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I believe Java and NetBeans are produced (effectively) by the same people (Sun).

Does this mean that NetBeans supports Java more effectively than Eclipse?

More specifically for GUI development, I believe NetBeans uses standard Swing components (and recently the Swing Application Framework which I think is going into Java 7), and I think Eclipse uses its own Swing framework.

Does this mean that Netbeans is better/safer than Eclipse for GUI development, safer in the sense of standards compliance and language compatibility?

Thanks.

Mark.
 
Mark Dary
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Could anyone offer a comment on this?

Thanks.

Mark.
 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I do not know about Netbeans as I have never used it personally.

More specifically for GUI development, I believe NetBeans uses standard Swing components (and recently the Swing Application Framework which I think is going into Java 7), and I think Eclipse uses its own Swing framework.


No. There is no "eclipse" brand of Swing.
In eclipse, as long as the required classes are on the class path, you can use any third party libraries like JGoodies or JFreeChart or Quartz or whatever.

Does this mean that Netbeans is better/safer than Eclipse for GUI development, safer in the sense of standards compliance and language compatibility?


Not true.
In the end, the code is compiled by javac.exe which will throw all kinds of errors if you do not follow the language specifications.
On the other hand, coding standards can and are not tied down to Java as java is a free flowing language.

 
Ranch Hand
Posts: 2908
1
Spring Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Mark Dary wrote:
Does this mean that Netbeans is better/safer than Eclipse for GUI development, safer in the sense of standards compliance and language compatibility?



I used NetBeans and Eclipse both but for the Web development..

The one measure difference in both IDE is, the GUI framework they based on, NB uses Swing whereas Eclipse uses its own GUI library, (I currently not remembering its name). But finally GUI development is done In Java Swing or AWT and that's not affect by on which IDE you are building it. As long as , they're having good plug in for Swing development, no problem..
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Mark Dary wrote:More specifically for GUI development, I believe NetBeans uses standard Swing components (and recently the Swing Application Framework which I think is going into Java 7), and I think Eclipse uses its own Swing framework.


Eclipse uses SWT instead of Swing. There are historical reasons why this is so - at the time when Eclipse started, Swing was still very new and it was quite slow (Java 1.2) and the people that were creating Eclipse at IBM thought that Swing wasn't suited for a big application like Eclipse. See the link for more information on SWT.
 
Maneesh Godbole
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My Bad.
I did not realize the OP meant swing/swt for the IDE itself
 
Ranch Hand
Posts: 2458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Mark Dary wrote:I believe Java and NetBeans are produced (effectively) by the same people (Sun).

Certainly not. Also, Netbeans didnĀ“t originate in Sun. Sun has taken it over around 1999/2000.
 
Mark Dary
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for all the feedback guys and girls.

I think in summary then there is no real difference.

Thanks.

Mark.
 
Ranch Hand
Posts: 398
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Have a look at this Link and see the difference. It compares Netbeans, eclipse and IntelliJ.

Mourougan
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic