Object[] params = new Object[2];
params[0] = newName;
params[1] = updateAllTracks;
this.iTunesCom.callProcedure("Rename", params);
} catch (ITUNES_E_OBJECTDELETED e) {
throw new EQPresetDeletedException(this);
} catch (ITUNES_E_OBJECTEXISTS e) {
throw new ObjectExists("An EQ preset with the name \" " + newName + "\" already exists.");
} catch (ITUNES_E_OBJECTLOCKED e) {
throw new JitcaGeneralException("This is the Manual EQ preset, which cannot be renamed.");
}