IDE and GUI maker

hi,
i’m searching for a GUI maker for java, even only for simple Swing Gui.
i’m using WindowBuilder on eclipse but i don’t think is good.
Do you know another application for that?
I prefer an IDE that don’t write rows of code with shitty comments.

sorry for my english i’m italian.

thanks in advance

take a look at netbeans, with has a new gridbag layout tool in its GUI toolbox.

Eclipse has WindowBuilder, it was bought by Google and is now free:
https://developers.google.com/java-dev-tools/wbpro/
There is also my lovely TableLayout if you want to hand write your UI. :slight_smile:
http://code.google.com/p/table-layout/

netbeans is better than windowbuilder 'cause i can resize better component by hand.
but it creates shitty comments in my opinion…there’s a way to modify the locked code (autogenerated code) by netbeans?

Hi

Netbeans WYSIWYG editor is called Matisse as far as I know. Therefore, you should compare Matisse with Windowbuilder and Netbeans with Eclipse.

In my humble opinion, if you haven’t already done that, learn to write complex Swing GUIs without this kind of tool and use them only when you are comfortable with Swing. Trying to find where you have to put your code will make you waste a lot of time especially if you’re a beginner in Swing.

If you’re really concerned about the “shitty” commenting in generated code, then you should take gouessej’s advice and write the GUI by hand. The whole point of using a GUI builder is to not worry about what the code looks like.

I remember the day when I created a bunch of Layouts and reusing JPanel like hell to create design that I want.

Sure there is, but then you wouldn’t be able to use this with the GUI builder anymore. But I really don’t see your problem. The code netbeans is generating is not your concern. Just implement your listeners and don’t care about the boilerplate-code netbeans generates.

Maybe your problem is that you try to do something in another way that the GUI builder assumes, so it goes into your way. Try to work through some tutorials about Matisse and see if it provides stuff you overlooked.