* @param eqName Name of the EQPreset.
* @return The specified EQPreset. NULL, if there is no existing EQPreset with the specified name.
* @throws JitcaException if an error occurs.
*/
public EQPreset getEQPreset(String eqName) {
EQPreset eqPreset = this.eqPresets.get(eqName);
if (eqPreset == null){
eqPreset = this.loadEQPresetFromiTunes(eqName);
}
this.addEQPreset(eqPreset);
return eqPreset;