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.

Results 1 to 6 of 6

Thread: IDE (Visual Editor)

  1. #1
    Member
    Join Date
    Jul 2010
    Posts
    45
    Thanks
    10
    Thanked 3 Times in 3 Posts

    Default IDE (Visual Editor)

    hi all,

    Can anyone advise on which IDE/Visual Editor is used most commonly in professional settings for GUI application development?

    It seems as though Eclipse is by far the most popular IDE out there, but it does not come with a Visual Editor built in. I can't imagine that professional GUI applications are all coded by hand? Do software companies use some type of third party Visual Editor in conjunction with Eclispe?

    I know that Netbeans has a Visual Editor built in. But I would like to work with what is used the most in a professional environment so that it will help me when it comes time for the job hunt.

    thanks


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: IDE (Visual Editor)

    There is an Eclipse plugin that allows you to edit Swing visually, but it isn't free. Unfortunately, I've never used it so I can't tell you if it's good or bad (I use the "code by hand" method )

  3. #3
    Member
    Join Date
    Jul 2010
    Posts
    45
    Thanks
    10
    Thanked 3 Times in 3 Posts

    Default Re: IDE (Visual Editor)

    Ahh, I see. Is it common to see entire GUI applications written "by hand" and without the use of a Visual Editor? According to Sun's java tutorial this can be a very "challenging" experience and I just assumed (without any research) that most software companies would make use of some sort of Visual Editor.

  4. #4
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: IDE (Visual Editor)

    Well, I would imagine they do use visual editors. I just program the GUI's by hand because I'm too cheap to buy a visual editor for eclipse, and I've never got the hang of using NetBeans. I also program a lot of "customized" components, for example, a plotter, mesh visualizer, and interactive Jython console, which are impossible to make using a visual editor. However, once these components are made, depending on the visual editor, you can easily add them into a larger GUI (I personally haven't found a need to do this yet, but I know others have).

  5. #5
    Junior Member
    Join Date
    Aug 2010
    Posts
    19
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: IDE (Visual Editor)

    the best free gui editor i know of is built into netbeans
    the best commercial one i ever used is jformdesigner
    intellij idea also has a good one, but not in the free edition

  6. #6
    Member Darryl.Burke's Avatar
    Join Date
    Mar 2010
    Location
    Madgaon, Goa, India
    Posts
    494
    Thanks
    8
    Thanked 48 Times in 46 Posts

    Default Re: IDE (Visual Editor)

    Quote Originally Posted by bbr201 View Post
    Ahh, I see. Is it common to see entire GUI applications written "by hand" and without the use of a Visual Editor? According to Sun's java tutorial this can be a very "challenging" experience ...
    Strictly in terms of difficulty and learning curve, I believe it's a greater challenge to learn to use a visual editor competently than it is to create a GUI by hand coding. Once you are well familiar with the steps involved in designing and hand coding a GUI, and have time to invest, use of a visual editor can improve your productivity.

    Using nested JPanels each with a well selected layout manager can make coding relatively complex GUIs a piece of cake, and amenable to change and improvement. A GUI coded with a visual designer, however, is married to that editor without any provision whatsoever for divorce.

    db

Similar Threads

  1. Visual Swing 4 Eclipse
    By helloworld922 in forum Java JDK & IDE Tutorials
    Replies: 1
    Last Post: February 7th, 2012, 11:33 AM
  2. Replies: 2
    Last Post: April 21st, 2010, 10:25 AM
  3. need API for Connection Routing in Interactive Diagram Editor
    By pavan arepu in forum AWT / Java Swing
    Replies: 2
    Last Post: April 21st, 2010, 10:19 AM
  4. Creating Polygon (not visual)
    By teen-omar in forum What's Wrong With My Code?
    Replies: 0
    Last Post: April 11th, 2010, 03:28 PM
  5. java.util.* and visual studio 2005
    By natalie in forum Java Theory & Questions
    Replies: 0
    Last Post: February 26th, 2010, 10:34 AM