Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose you create an OpenSwing UI in, for example, NetBeans, with a few numeric columns, say A, B, and C.

And suppose you have a simple array of object of class with fields A,B,C.

What do you add to the generated code to display this array of data in the grid control?

Is there anything I would do in the Design (wysiwyg GUI) editor other than drop in the column (and rename them) that generates additional code linking the grid control to the array of data?

I know this is very basic question. The demos provided with openswing seem rather cluttered, with little explanatory test. I just want to see the bare essentials.

To make it easier for anyone providing example code, here already is the code generated by NetBeans for barebones grid control UI with simple array of "RowClass" with fields A,B,C.

Thanks for any help!

public class SimpleGridControl extends javax.swing.JFrame {

    public class RowClass {
        int A;
        int B;
        int C;
        RowClass(int a, int b, int c){
            A=a;B=b;C=c;
        }
    }
    RowClass[] someRows;
    /**
     * Creates new form SimpleGridControl
     */
    public SimpleGridControl() {
        initComponents();
        someRows[0]=new RowClass(1,2,3);
        someRows[1]=new RowClass(4,5,6);
        someRows[2]=new RowClass(7,8,9);
    }

    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">
    private void initComponents() {

        gridControl1 = new org.openswing.swing.client.GridControl();
        columnA = new org.openswing.swing.table.columns.client.IntegerColumn();
        columnB = new org.openswing.swing.table.columns.client.IntegerColumn();
        columnC = new org.openswing.swing.table.columns.client.IntegerColumn();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        gridControl1.getColumnContainer().setLayout(new javax.swing.BoxLayout(gridControl1.getColumnContainer(), javax.swing.BoxLayout.LINE_AXIS));

        columnA.setColumnName("A");
        gridControl1.getColumnContainer().add(columnA);

        columnB.setColumnName("B");
        gridControl1.getColumnContainer().add(columnB);

        columnC.setColumnName("C");
        gridControl1.getColumnContainer().add(columnC);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGap(84, 84, 84)
                .addComponent(gridControl1, javax.swing.GroupLayout.PREFERRED_SIZE, 320, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(96, Short.MAX_VALUE))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(gridControl1, javax.swing.GroupLayout.PREFERRED_SIZE, 270, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(19, Short.MAX_VALUE))
        );

        pack();
    }// </editor-fold>

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /*
         * Set the Nimbus look and feel
         */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /*
         * If Nimbus (introduced in Java SE 6) is not available, stay with the
         * default look and feel. For details see
         * http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(SimpleGridControl.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(SimpleGridControl.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(SimpleGridControl.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(SimpleGridControl.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /*
         * Create and display the form
         */
        java.awt.EventQueue.invokeLater(new Runnable() {

            public void run() {
                new SimpleGridControl().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify
    private org.openswing.swing.table.columns.client.IntegerColumn columnA;
    private org.openswing.swing.table.columns.client.IntegerColumn columnB;
    private org.openswing.swing.table.columns.client.IntegerColumn columnC;
    private org.openswing.swing.client.GridControl gridControl1;
    // End of variables declaration
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.