Package com.jitcaforwin.basic.impl.internal

Examples of com.jitcaforwin.basic.impl.internal.ITEQPresetImpl


  // TestTODO
  public IITEQPreset createEQPreset(String eqPresetName) throws JitcaException {
    try {
      ResultObject result = this.iTunesCom.callFunction("CreateEQPreset", eqPresetName);
      DispatchObject dispatch = result.getDispatch();
      return new ITEQPresetImpl(dispatch);
    } catch (ITUNES_E_OBJECTEXISTS e) {
      throw new EQPresetExists(eqPresetName);
    } catch (DispatchObjectNullException e) {
      throw new JitcaGeneralException("EQPreset " + eqPresetName + "could not be created");
    }
View Full Code Here


  }

  // TestTODO
  public IITEQPreset getCurrentEQPreset() {
    try {
      return new ITEQPresetImpl(this.iTunesCom.getPropertyAsDispatchObject("CurrentEQPreset"));
    } catch (DispatchObjectNullException e) {
      return null; // no current EQPreset
    }
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.basic.impl.internal.ITEQPresetImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.