* Implementazione di IPlayerController con metodi wait e notify.
* */
public class AsyncMp3Controller implements IPlayerController {
public AsyncMp3Controller(String fileName) throws FileNotFoundException,
JavaLayerException {
player = new MyPlayer(new Mp3InputStream(fileName));
}