Package com.jitcaforwin.cominterface

Examples of com.jitcaforwin.cominterface.DispatchObject


    }
  }
 
  private IITTrack getTrack(Variant args[]) throws JitcaException {
    return ITTrackImpl
        .create(new DispatchObject(args[0].getDispatch()));
  }
View Full Code Here


    super(o);
  }

  public IITPlaylist item(long index) throws SourceDeletedException {
    try {
      DispatchObject dispatch = super.itemDispatchObject(index);
      return ITPlaylistImpl.newIITPlaylist(dispatch);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new SourceDeletedException();
    } catch (ObjectDeletedException e) {
      throw new SourceDeletedException();
View Full Code Here

  }

  public IITPlaylist itemByName(String name) throws SourceDeletedException {
    try {
      DispatchObject dispatch = super.itemByNameDispatchObject(name);
      return ITPlaylistImpl.newIITPlaylist(dispatch);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new SourceDeletedException();
    }
  }
View Full Code Here

    }
  }

  public IITPlaylist itemByPersistentID(long highID, long lowID) throws SourceDeletedException {
    try {
      DispatchObject dispatch = super.itemByPersistentIDDispatchObject(highID, lowID);
      return ITPlaylistImpl.newIITPlaylist(dispatch);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new SourceDeletedException();
    }
  }
View Full Code Here

    long newVolume = args[0].getInt();
    this.listener.onSoundVolumeChangedEvent(newVolume);
  }

  private IITTrack getTrack(Variant args[]) throws JitcaException {
    return ITTrackImpl.create(new DispatchObject(args[0].getDispatch()));
  }
View Full Code Here

    super(o);
  }

  public IITEQPreset item(long index) throws JitcaGeneralException {
    try {
      DispatchObject dispatch = super.itemDispatchObject(index);
      return new ITEQPresetImpl(dispatch);
    } catch (DispatchObjectNullException e) {
      return null;
    }
View Full Code Here

  }

  public IITEQPreset itemByName(String name) throws JitcaGeneralException {
    try {
      DispatchObject dispatch = super.itemByNameDispatchObject(name);
      return new ITEQPresetImpl(dispatch);
    } catch (DispatchObjectNullException e) {
      return null;
    }
  }
View Full Code Here

    super(o);
  }

  public IITEncoder item(long index) throws JitcaGeneralException {
    try {
      DispatchObject dispatch = super.itemDispatchObject(index);
      return new ITEncoderImpl(dispatch);
    } catch (DispatchObjectNullException e) {
      return null;
    }
View Full Code Here

  }

  public IITEncoder itemByName(String name) throws JitcaGeneralException {
    try {
      DispatchObject dispatch = super.itemByNameDispatchObject(name);
      return new ITEncoderImpl(dispatch);
    } catch (DispatchObjectNullException e) {
      return null;
    }
  }
View Full Code Here

  public ITSourceCollectionImpl(DispatchObject o) throws DispatchObjectNullException {
    super(o);
  }

  public IITSource item(long index) {
    DispatchObject dispatch;
    try {
      dispatch = super.itemDispatchObject(index);
      return ITSourceImpl.newIITSource(dispatch);
    } catch (ObjectDeletedException e) {
      return null;
View Full Code Here

TOP

Related Classes of com.jitcaforwin.cominterface.DispatchObject

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.