View Single Post
  #7 (permalink)  
Old 11-04-2007, 12:40 PM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 19
Posts: 2,655
Last Blog:
Passwords
Rep Power: 20
John has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud of
Send a message via AIM to John
Default

If the user writes every line of code by themselves the IDE has hardly anything to do with their code - it just seems that most people who use Netbeans use the GUI builder because a) they are too lazy to build it themselves or b) they don't know how to do it themselves. Then they come to a [this] forum and expect people to debug code that looks like this:

Java Code:
  1. javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
  2.         getContentPane().setLayout(layout);
  3.         layout.setHorizontalGroup(
  4.             layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  5.             .addGroup(layout.createSequentialGroup()
  6.                 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
  7.                     .addGroup(layout.createSequentialGroup()
  8.                         .addGap(73, 73, 73)
  9.                         .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
  10.                             .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
  11.                                 .addComponent(jLabel1)
  12.                                 .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
  13.                                 .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
  14.                             .addComponent(jButton1)))
  15.                     .addGroup(layout.createSequentialGroup()
  16.                         .addContainerGap(34, Short.MAX_VALUE)
  17.                         .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 229, javax.swing.GroupLayout.PREFERRED_SIZE)))
  18.                 .addContainerGap())
  19.         );
I've built several games [Scrabble, Monopoly] along with a few other professional GUI's [file uploader, signature generator] and I never had code that looked like that. Why? Because its a product of Netbeans.

Also Eclipse does a lot more than just Java. It also does C/C++, PHP, AJAX, COBOL to name a few -- is also used as the platform of many other IDE's such as Adobe Flex [$499]
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum | My Blog
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall
Reply With Quote