views:

99

answers:

4

I've come across Netbeans but is there any tools out there that lets you build things event driven ?

I'm looking for a feature like being able to drag and drop UI components, and add methods to buttons directly by double clicking it (kinda like visualbasic) and viewing the source.

A: 

There's the Java Visual Editor.

This is nice if you're used to (or are considering using) Eclipse, which in itself is a very popular Java IDE.

Chris Cooper
+1  A: 

You can use Eclipse + Jigloo GUI Builder plugin.

waiting
A: 

IntelliJ IDEA features a nice GUI builder capable of using several layout managers. It's available in the open source community edition. I personally hate GUI builder and prefer more flexible solution like manually coding the layout with the all powerful and easy to use MiG Layout.

Bozhidar Batsov
A: 

In Netbean you have Matisse. See Designing a Swing GUI in NetBeans IDE

Istao