Author Topic: What do you think of the netbeans GUI maker  (Read 1832 times)

0 Members and 1 Guest are viewing this topic.

Offline hppd

  • Knight
  • **
  • Posts: 163
  • Cookies: 7
    • View Profile
What do you think of the netbeans GUI maker
« on: December 09, 2013, 09:45:26 pm »
Hello coders

I've just discovered the super easy way to make user interfaces in Netbeans with the Design view. It almost looks to good to be true.. Do you use it? And what do you think are the benefits and drawbacks of it.


Offline Deque

  • P.I.N.N.
  • Global Moderator
  • Overlord
  • *
  • Posts: 1203
  • Cookies: 518
  • Programmer, Malware Analyst
    • View Profile
Re: What do you think of the netbeans GUI maker
« Reply #1 on: December 09, 2013, 09:51:10 pm »
Pros:
* easier for a Swing beginner
* fast results
Cons:
* you don't learn how to do it yourself
* the code you get is not flexible and hard to read

I prefer to write it all on my own. Partly because I don't use Netbeans, but also because I like to have well designed code and by now it is probably easier for me to write it than getting used to a GUI Designer (not sure, I never tried the Netbeans GUI Builder, only two Eclipse Plugins and these where terrible).

Offline Matriplex

  • Knight
  • **
  • Posts: 323
  • Cookies: 66
  • Java
    • View Profile
Re: What do you think of the netbeans GUI maker
« Reply #2 on: December 20, 2013, 03:30:43 am »
I don't deal with GUI's much as I am normally programming a game if I'm using java. But I mean, same 'rule' goes for that as every other drag and drop type thing:
You don't learn jack.
Of course, if you're on a tight schedule use it! But if not, definitely learn to code the GUI as it will help you out later.
\x64\x6F\x75\x65\x76\x65\x6E\x00

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: What do you think of the netbeans GUI maker
« Reply #3 on: December 20, 2013, 07:35:20 am »
I said it once before and I'll say it again.
As other said, it's not good if you are just starting and trying to learn. However when you'll become fairly good at it, you can move to just drag and drop coding, because you'll want to do faster and rapid development, which you can't really do if you're gonna write every element yourself.

Offline hppd

  • Knight
  • **
  • Posts: 163
  • Cookies: 7
    • View Profile
Re: What do you think of the netbeans GUI maker
« Reply #4 on: December 25, 2013, 07:05:54 pm »
I said it once before and I'll say it again.
As other said, it's not good if you are just starting and trying to learn. However when you'll become fairly good at it, you can move to just drag and drop coding, because you'll want to do faster and rapid development, which you can't really do if you're gonna write every element yourself.
I've been using it a bit and even when you are already good I don't think it's good to use a  GUI maker not the netbeans one anyway. You can't edit the gui code, and it spits out like 5 pages for what can be done in 1.5 pages.

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: What do you think of the netbeans GUI maker
« Reply #5 on: December 25, 2013, 10:02:36 pm »
I've been using it a bit and even when you are already good I don't think it's good to use a  GUI maker not the netbeans one anyway. You can't edit the gui code, and it spits out like 5 pages for what can be done in 1.5 pages.
Of course, code automation tends to generate lots of unnecessary code which shouldn't be there. I haven't used a Netbeans GUI designer, but Eclipse's Swing components are pretty accurate for GUI design...