1. can any one give me any link of using professional eclipse window builder guide
2.can i build my java game using window builder
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
1. can any one give me any link of using professional eclipse window builder guide
2.can i build my java game using window builder
First of all, GUI editors tipically generate code that is at least: a) very verbose, b) not easily readable, c) hard to maintain.
I never used a GUI editor, since I know very well how to develop manually Swing interfaces. If there aren't very important and precise reasons to use a GUI editor, I suggest you to avoid them.
I don't known what kind of game you want to develop. It depends ..... generally games don't have much GUI in terms of AWT/Swing components. Most games are typically more involved in custom/advanced paintings, user event handling and eventually audio playback. That is all another story, for which a GUI editor doesn't mind much.
Andrea, www.andbin.net — SCJP 5 (91%) – SCWCD 5 (94%)
Useful links for Java beginners – My new project Java Examples on Google Code
And don't ask questions that you can answer by doing your own Internet search. If after doing your own Internet search, you want our opinions on what you've found, THEN ask, but not before.