Using the Visual Editor in Eclipse I started a Swing UI containing a table (JTable) with 2 columns (JTableColumn). Adding data to the table this way:

final DefaultTableModel model = (DefaultTableModel) this.jTable.getModel();
model.addRow(new Object[] {"Column 1", "Column 2"});

generated an ArrayIndexOutOfBoundsException. I solved this by setting the number of columns of the model backing the table:

model.setColumnCount(this.jTable.getColumnCount());

But after this call, the column headers of the table I defined using the UI editor, are changed to "A" and "B". Now I'm wondering if I should go on and correct the generated code like I did, or is there a better way to build UI's with Visual Editor?

To be complete, this is the generated code to define the table and columns:

private JTable getJTable() {
    if (this.jTableSongs == null) {
        final TableColumn tableColumn1 = new TableColumn();
        tableColumn1.setHeaderValue("Header 1");
        final TableColumn tableColumn2 = new TableColumn();
        tableColumn2.setHeaderValue("Header 2");
        this.jTableSongs = new JTable();
        this.jTableSongs.addColumn(tableColumn1);
        this.jTableSongs.addColumn(tableColumn2);
    }
    return this.jTable;
}
link|improve this question
1  
Why don't you try NetBeans Matisse visual Swing builder? There's even a page which explains how to use it in parallel with Eclipse: wiki.netbeans.org/UsingNetbeansMatisseAndEclipseInParallel – Boris Pavlović Aug 25 '10 at 13:47
I already use and know Eclipse, so that's easier for me, but I tried NetBeans briefly. The additional complexity of org.jdesktop or the Netbeans platform seems too much overhead to learn. – Kwebble Aug 25 '10 at 14:22
The combination looks promising. Rebuilding the table with the NetBeans GUI editor created program without the errors. Nice! – Kwebble Aug 25 '10 at 15:41
I tried the Netbeans GUI builder some more but I find it to limited. The visual & property editors don't cover all details of GUI elements, so quickly you have to write parts in code yourself. That's not what I expect of a GUI builder. – Kwebble Aug 27 '10 at 20:11
feedback

2 Answers

I don't know about this specific problem (table columns) but in the past i had similar problems with VE.

If you don't have the number of columns in the Property View, you have to specify it programmatically, editing the code, but VE will not remove hand added code.

link|improve this answer
Yeah, but I don't want to hand code the GUI. – Kwebble Aug 27 '10 at 20:11
feedback

or is there a better way to build UI's with Visual Editor?

The problem with using code generators is that you spend more time learning the IDE and not learning Java. The better approach is to use the IDE for debugging and so on and build the GUI's yourself so you are in full control and the code can be moved from one IDE to another.

I don't know what the generated code should look like but the following looks inconsistent:

this.jTable = new JTable(); 
this.jTableSongs.addColumn(tableColumn1); 
this.jTableSongs.addColumn(tableColumn2); 

A jTable variable is created (and returned from the method) but the columns are added to jTableSongs. So it looks to me like jTable has 0 columns which could cause an Exception.

link|improve this answer
1  
I don't think of a GUI builder as a code generator. I'd like it to be a replacement for coding, so that I can focus on creating the layout and connecting it to the backend. The error in the code was a typo in the post and is corrected. In the class the names are all jTableSongs. – Kwebble Aug 25 '10 at 20:31
feedback

Your Answer

 
or
required, but never shown

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