SearchMusicThread smt = new SearchMusicThread(this, controller);
LoadingFrame lf = new LoadingFrame(messages);
lfs.put(Long.valueOf(smt.getId()), lf);
lf.setVisible(true);
smts.put(Long.valueOf(smt.getId()), smt);
smt.startThread(artist, title, keywords, condition, sort);
}
public void updateSearchMusicTab(long threadId)
{
tabs.addTab(messages.getString("gui.tab.musics.title"), new MusicResultsInternalFrame(messages.getString("gui.tab.musics.title"), smts.get(threadId).getItems(), tabs.getWidth(), this, tabs.getTabCount(), messages));