I usually write Java code using a simple text editor and .bat files to compile and run. I'm not used to an IDE like Eclipse or Netbeans, and as a result, every GUI that I have done so far has been manually written.
Questions:
Is it possible to use eclipse to easily create a graphical interface (for example, drag and drop functions)?
Can this generated code use only the basic java packages (swing, awt), and not any other package provided by the IDE?
I say this because - correct me if I'm wrong - from what I have read so far, I understand that Eclipse and other IDEs use their own packages (for example, to achieve better layouts). I would like to avoid this dependency and, if possible, copy-paste the code generated by Eclipse, and then work in a simple way that I'm used to.
Thanks in advance.
[edit]
After trying it for a couple of days, I can now say that WindowsBuilder is exactly what I was looking for. Thank you for all your answers.
source share