private FileListTable table;
private ThumbNailPreview preview;
public FileListModule(){
super();
table = new FileListTable();
table.getTable().getSelectionModel().addListSelectionListener(new ListSelectionListener(){
@Override
public void valueChanged(ListSelectionEvent e) {
if(table.getTable().getSelectedRow() > -1){
preview.setThumbNail(FrameManager.getInstance().getFrameAtIndex(table.getTable().getSelectedRow()));