sbts.remove(threadId);
}
public void startSearchMusic(String artist, String title, String keywords, String condition, String sort)
{
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);
}