public void setMiniPlayer(boolean shouldBeMiniPlayer) throws WindowDeletedException, WindowException {
try {
this.iTunesCom.setProperty("MiniPlayer", shouldBeMiniPlayer);
} catch (ITUNES_E_OBJECTDELETED e) {
throw new WindowDeletedException(this);
} catch (ITUNES_E_OBJECTLOCKED e) {
throw new WindowException("The window is maximized!");
}
}