vote up 1 vote down star
1

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?

flag
I think this somewhat answers your GUI question. codinghorror.com/blog/archives/… – Secko Jul 3 at 0:56

2 Answers

vote up 2 vote down
  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|flag
+1 for maven layout. Going further I would suggest actually using maven over ant or some IDE dependent build tool. – Cogsy Jul 3 at 0:55
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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