table.setColumnControlVisible(false);
table.setEditable(false);
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
table.setHighlighters(new HighlighterPipeline(
new org.jdesktop.swingx.decorator.Highlighter[]{AlternateRowHighlighter.genericGrey}));
table.getHighlighters().addHighlighter(new RolloverHighlighter(Color.BLACK, Color.WHITE ));
table.setHorizontalScrollEnabled(true);
table.setModel(new LDTableModel());
scrollPane.setViewportView(table);
scrollPane.setPreferredSize(new Dimension(300, 150));
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);