SearchBooksThread sbt = new SearchBooksThread(this, controller);
LoadingFrame lf = new LoadingFrame(messages);
lfs.put(Long.valueOf(sbt.getId()), lf);
lf.setVisible(true);
sbts.put(Long.valueOf(sbt.getId()), sbt);
sbt.startThread(author, title, keywords, condition, sort);
}
public void updateSearchBookTab(long threadId)
{
tabs.addTab(messages.getString("gui.tab.books.title"), new BooksResultsInternalFrame(messages.getString("gui.tab.books.title"), sbts.get(threadId).getItems(), tabs.getWidth(), this, tabs.getTabCount(), messages));