setName("DemoTable");
JTable table = new JTable(new DemoTableModel());
table.setPreferredScrollableViewportSize(new Dimension(180, 32));
table.setDefaultEditor(Date.class, new JDateChooserCellEditor());
// Create the scroll pane and add the table to it.
JScrollPane scrollPane = new JScrollPane(table);
// Add the scroll pane to this panel.