JScrollPane scrollPane = new JScrollPane();
JXTable table = new JXTable();
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);