songManager.modifySongWeight(songQ.getCurrentlyPlayingSong(), -1);
songQ.skip();
}
public void setRandomLock(String lockType, String lockId) {
SongAttribute lock = null;
if (lockType != null && lockId != null && !"".equals(lockType) && !"".equals(lockId))
lock = songManager.getAttribute(lockType, Integer.parseInt(lockId));
randomizer.setLock(lock);
for (Iterator i=songManager.getSongs(lock).iterator(); i.hasNext();)
songManager.modifySongWeight(((Song)i.next()), 1);