Search code examples
javanetbeans

Using Netbeans GUI designer


I'd like to ask you a simple question(maybe stupid one). Would you use Netbeans GUI designer for commercial application?Becase it's generating lots of code, maintenance of application based on designer could be tough(IMHO), there are also pieces of generated code you can't change and so on.

My project will have only few forms, so it's no a big deal right now(I'd go with designer for that), but I am asking for future purposes...

Thanks a lot for any thoughts.


Solution

  • My project will have only few forms ...

    If you are good at using Swing components (frames, panels, layout managers etc.), design your forms on your own, so that you can commit/track/share code changes easily in the future. However, if you are in a hurry or not so good at designing your GUI, then you can get use of Netbeans GUI Designer for your situation. It may facilitate and speed up your work, but you should still keep awake to the connections between Netbeans generated GUI and your application logic.