• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Can anybody recommend GUI builder for JAVA ?

Originally posted by: The Linuxator
I need advice on what GUI builder Iis best inorder to generate JAVA source code for an eclipse project I am working on ?

GUI builder? You mean Beans?

Jsut code the GUI! It's not that hard and the code blaot with anythingthat auto gens would be a nightmare.
 
Originally posted by: diegoalcatraz
I think Netbeans includes a GUI builder. I'm sure Eclipse has a plug in for that, too.


I am used to programming in VB.net and when I tried creating a form in NetBeans I just found it awful, is it just me or GUI builders in JAVA makes things more difficult rather than making things easy ?
 
I have never encountered a java gui builder that doesnt create code that looks like someone crapped in your code. so I strongly reccomend building it yourself, which results in far cleaner code. only for extreme RAD (you need a gui in less than one hour) I would reccomend gui building tools.
 
Originally posted by: The Linuxator
Originally posted by: diegoalcatraz
I think Netbeans includes a GUI builder. I'm sure Eclipse has a plug in for that, too.

I am used to programming in VB.net and when I tried creating a form in NetBeans I just found it awful, is it just me or GUI builders in JAVA makes things more difficult rather than making things easy ?

Netbeans was the first GUI Builder for Java I had used; in college they made us do it all by hand (it's really not all that bad, honestly). But Netbeans made the process so damn quick for me. I haven't used VB in many years, but maybe what you're having the most trouble with is the Java layout scheme - BorderLayout, GridLayout, SpringLayout, etc. It might not be a very instinctive way to approach Java GUI design from other backgrounds. The Java tutorial on Layout managers might help. To be honest, when using Netbeans I selected their AbsoluteLayout and locked the window size.
 
Originally posted by: boran
I have never encountered a java gui builder that doesnt create code that looks like someone crapped in your code. so I strongly reccomend building it yourself, which results in far cleaner code. only for extreme RAD (you need a gui in less than one hour) I would reccomend gui building tools.
i agree.. the code generated by a gui builder lacks structure.. instead it just meshes everything together in one method or another.
that doesn't mean that i don't love em tho.. i still use them, but only for the shell.. generating a non-simple layout or adding event handlers is more of a pain in a builder than it is to code.
I am used to programming in VB.net and when I tried creating a form in NetBeans I just found it awful, is it just me or GUI builders in JAVA makes things more difficult rather than making things easy ?
you're not going to get that same ease with java.. vb was designed to allow people with little programming experience to create applications that interact with dlls.

here're some free ones..
eclipse ve.. requires eclipse, and it's kinda slow to load.
jigloo.. requires eclipse. free for non-commercial use only.
oracle jdeveloper.. it's an ide of it's own. free for non-commercial use only.
 
Back
Top