up vote 1 down vote favorite
1
share [g+] share [fb]

I'm starting an open source Java project and I need a few bits of advice.

  1. Should I use an IDE such as Netbeans to create the UI (swing) or should I do it by hand. Is there an easy way to do GUI using the Eclipse IDE?

  2. What's a good way to do the file structure? workspace/PROJECT/? Like where should I place the main class?

link|improve this question

50% accept rate
I think this somewhat answers your GUI question. codinghorror.com/blog/archives/000325.html – Secko Jul 3 '09 at 0:56
feedback

2 Answers

  1. Don't think there is really a best way to do the gui, depends on the complexity of the gui and personal preferences. Lots of people like GUI designers and others prefer to handle the layout themselves. For eclipse there are some plugins around such as jigloo

  2. For project structure I'd suggest using the maven layout.

link|improve this answer
+1 for maven layout. Going further I would suggest actually using maven over ant or some IDE dependent build tool. – Cogsy Jul 3 '09 at 0:55
feedback

Visual Editor for Eclipse. Netbeans default support for GUI building is also great.

Hand-coding the GUI can be interesting from a learning perspective, but when you have deadlines to meet, you might not want to "waste" time doing things that could be much easily done using a good tool, IMO.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.