/* * This file is auto-generated. DO NOT MODIFY. * Original file: /home/smallstar/i-jetty-read-only/i-jetty/i-jetty-ui/src/org/mortbay/ijetty/movieservice/IMediaPlaybackService.aidl */ package org.mortbay.ijetty.movieservice; public interface IMediaPlaybackService extends android.os.IInterface { /** Local-side IPC implementation stub class. */ public static abstract class Stub extends android.os.Binder implements org.mortbay.ijetty.movieservice.IMediaPlaybackService { private static final java.lang.String DESCRIPTOR = "org.mortbay.ijetty.movieservice.IMediaPlaybackService"; /** Construct the stub at attach it to the interface. */ public Stub() { this.attachInterface(this, DESCRIPTOR); } /** * Cast an IBinder object into an org.mortbay.ijetty.movieservice.IMediaPlaybackService interface, * generating a proxy if needed. */ public static org.mortbay.ijetty.movieservice.IMediaPlaybackService asInterface(android.os.IBinder obj) { if ((obj==null)) { return null; } android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR); if (((iin!=null)&&(iin instanceof org.mortbay.ijetty.movieservice.IMediaPlaybackService))) { return ((org.mortbay.ijetty.movieservice.IMediaPlaybackService)iin); } return new org.mortbay.ijetty.movieservice.IMediaPlaybackService.Stub.Proxy(obj); } @Override public android.os.IBinder asBinder() { return this; } @Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException { switch (code) { case INTERFACE_TRANSACTION: { reply.writeString(DESCRIPTOR); return true; } case TRANSACTION_saveProgress: { data.enforceInterface(DESCRIPTOR); long _arg0; _arg0 = data.readLong(); this.saveProgress(_arg0); reply.writeNoException(); return true; } case TRANSACTION_setPlayPosition: { data.enforceInterface(DESCRIPTOR); int _arg0; _arg0 = data.readInt(); this.setPlayPosition(_arg0); reply.writeNoException(); return true; } case TRANSACTION_setMaxPosition: { data.enforceInterface(DESCRIPTOR); int _arg0; _arg0 = data.readInt(); this.setMaxPosition(_arg0); reply.writeNoException(); return true; } case TRANSACTION_setPlayMode: { data.enforceInterface(DESCRIPTOR); int _arg0; _arg0 = data.readInt(); this.setPlayMode(_arg0); reply.writeNoException(); return true; } case TRANSACTION_refreashList: { data.enforceInterface(DESCRIPTOR); this.refreashList(); reply.writeNoException(); return true; } case TRANSACTION_openFile: { data.enforceInterface(DESCRIPTOR); java.lang.String _arg0; _arg0 = data.readString(); this.openFile(_arg0); reply.writeNoException(); return true; } case TRANSACTION_findTheSong: { data.enforceInterface(DESCRIPTOR); boolean _arg0; _arg0 = (0!=data.readInt()); boolean _arg1; _arg1 = (0!=data.readInt()); this.findTheSong(_arg0, _arg1); reply.writeNoException(); return true; } case TRANSACTION_isPlaying: { data.enforceInterface(DESCRIPTOR); boolean _result = this.isPlaying(); reply.writeNoException(); reply.writeInt(((_result)?(1):(0))); return true; } case TRANSACTION_stop: { data.enforceInterface(DESCRIPTOR); this.stop(); reply.writeNoException(); return true; } case TRANSACTION_pause: { data.enforceInterface(DESCRIPTOR); this.pause(); reply.writeNoException(); return true; } case TRANSACTION_play: { data.enforceInterface(DESCRIPTOR); this.play(); reply.writeNoException(); return true; } case TRANSACTION_noMusic: { data.enforceInterface(DESCRIPTOR); boolean _result = this.noMusic(); reply.writeNoException(); reply.writeInt(((_result)?(1):(0))); return true; } case TRANSACTION_playByIndex: { data.enforceInterface(DESCRIPTOR); int _arg0; _arg0 = data.readInt(); boolean _arg1; _arg1 = (0!=data.readInt()); boolean _arg2; _arg2 = (0!=data.readInt()); this.playByIndex(_arg0, _arg1, _arg2); reply.writeNoException(); return true; } case TRANSACTION_prev: { data.enforceInterface(DESCRIPTOR); this.prev(); reply.writeNoException(); return true; } case TRANSACTION_next: { data.enforceInterface(DESCRIPTOR); this.next(); reply.writeNoException(); return true; } case TRANSACTION_getCurrentPlayIndex: { data.enforceInterface(DESCRIPTOR); int _result = this.getCurrentPlayIndex(); reply.writeNoException(); reply.writeInt(_result); return true; } case TRANSACTION_getMaxMusicLen: { data.enforceInterface(DESCRIPTOR); int _result = this.getMaxMusicLen(); reply.writeNoException(); reply.writeInt(_result); return true; } case TRANSACTION_duration: { data.enforceInterface(DESCRIPTOR); long _result = this.duration(); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_getAlbumId: { data.enforceInterface(DESCRIPTOR); long _result = this.getAlbumId(); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_position: { data.enforceInterface(DESCRIPTOR); long _result = this.position(); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_seek: { data.enforceInterface(DESCRIPTOR); long _arg0; _arg0 = data.readLong(); long _result = this.seek(_arg0); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_getLyricTime: { data.enforceInterface(DESCRIPTOR); long[] _result = this.getLyricTime(); reply.writeNoException(); reply.writeLongArray(_result); return true; } case TRANSACTION_getTrackName: { data.enforceInterface(DESCRIPTOR); java.lang.String _result = this.getTrackName(); reply.writeNoException(); reply.writeString(_result); return true; } case TRANSACTION_getSongInfo: { data.enforceInterface(DESCRIPTOR); java.lang.String _result = this.getSongInfo(); reply.writeNoException(); reply.writeString(_result); return true; } case TRANSACTION_getLyric: { data.enforceInterface(DESCRIPTOR); long _arg0; _arg0 = data.readLong(); java.lang.String[] _result = this.getLyric(_arg0); reply.writeNoException(); reply.writeStringArray(_result); return true; } case TRANSACTION_getArtistName: { data.enforceInterface(DESCRIPTOR); java.lang.String _result = this.getArtistName(); reply.writeNoException(); reply.writeString(_result); return true; } case TRANSACTION_setQueuePosition: { data.enforceInterface(DESCRIPTOR); int _arg0; _arg0 = data.readInt(); this.setQueuePosition(_arg0); reply.writeNoException(); return true; } case TRANSACTION_getPath: { data.enforceInterface(DESCRIPTOR); java.lang.String _result = this.getPath(); reply.writeNoException(); reply.writeString(_result); return true; } case TRANSACTION_getAudioSessionId: { data.enforceInterface(DESCRIPTOR); int _result = this.getAudioSessionId(); reply.writeNoException(); reply.writeInt(_result); return true; } } return super.onTransact(code, data, reply, flags); } private static class Proxy implements org.mortbay.ijetty.movieservice.IMediaPlaybackService { private android.os.IBinder mRemote; Proxy(android.os.IBinder remote) { mRemote = remote; } @Override public android.os.IBinder asBinder() { return mRemote; } public java.lang.String getInterfaceDescriptor() { return DESCRIPTOR; } @Override public void saveProgress(long pos) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeLong(pos); mRemote.transact(Stub.TRANSACTION_saveProgress, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setPlayPosition(int pos) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(pos); mRemote.transact(Stub.TRANSACTION_setPlayPosition, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setMaxPosition(int max) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(max); mRemote.transact(Stub.TRANSACTION_setMaxPosition, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setPlayMode(int mode) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(mode); mRemote.transact(Stub.TRANSACTION_setPlayMode, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void refreashList() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_refreashList, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void openFile(java.lang.String path) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeString(path); mRemote.transact(Stub.TRANSACTION_openFile, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void findTheSong(boolean reLoad, boolean showToast) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(((reLoad)?(1):(0))); _data.writeInt(((showToast)?(1):(0))); mRemote.transact(Stub.TRANSACTION_findTheSong, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public boolean isPlaying() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); boolean _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_isPlaying, _data, _reply, 0); _reply.readException(); _result = (0!=_reply.readInt()); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public void stop() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_stop, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void pause() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_pause, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void play() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_play, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public boolean noMusic() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); boolean _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_noMusic, _data, _reply, 0); _reply.readException(); _result = (0!=_reply.readInt()); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public void playByIndex(int index, boolean play, boolean seekToBegin) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(index); _data.writeInt(((play)?(1):(0))); _data.writeInt(((seekToBegin)?(1):(0))); mRemote.transact(Stub.TRANSACTION_playByIndex, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void prev() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_prev, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void next() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_next, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public int getCurrentPlayIndex() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); int _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getCurrentPlayIndex, _data, _reply, 0); _reply.readException(); _result = _reply.readInt(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public int getMaxMusicLen() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); int _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getMaxMusicLen, _data, _reply, 0); _reply.readException(); _result = _reply.readInt(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public long duration() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); long _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_duration, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public long getAlbumId() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); long _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getAlbumId, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public long position() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); long _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_position, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public long seek(long pos) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); long _result; try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeLong(pos); mRemote.transact(Stub.TRANSACTION_seek, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public long[] getLyricTime() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); long[] _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getLyricTime, _data, _reply, 0); _reply.readException(); _result = _reply.createLongArray(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public java.lang.String getTrackName() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); java.lang.String _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getTrackName, _data, _reply, 0); _reply.readException(); _result = _reply.readString(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public java.lang.String getSongInfo() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); java.lang.String _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getSongInfo, _data, _reply, 0); _reply.readException(); _result = _reply.readString(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public java.lang.String[] getLyric(long time) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); java.lang.String[] _result; try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeLong(time); mRemote.transact(Stub.TRANSACTION_getLyric, _data, _reply, 0); _reply.readException(); _result = _reply.createStringArray(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public java.lang.String getArtistName() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); java.lang.String _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getArtistName, _data, _reply, 0); _reply.readException(); _result = _reply.readString(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public void setQueuePosition(int index) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(index); mRemote.transact(Stub.TRANSACTION_setQueuePosition, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public java.lang.String getPath() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); java.lang.String _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getPath, _data, _reply, 0); _reply.readException(); _result = _reply.readString(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public int getAudioSessionId() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); int _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getAudioSessionId, _data, _reply, 0); _reply.readException(); _result = _reply.readInt(); } finally { _reply.recycle(); _data.recycle(); } return _result; } } static final int TRANSACTION_saveProgress = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0); static final int TRANSACTION_setPlayPosition = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1); static final int TRANSACTION_setMaxPosition = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2); static final int TRANSACTION_setPlayMode = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3); static final int TRANSACTION_refreashList = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4); static final int TRANSACTION_openFile = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5); static final int TRANSACTION_findTheSong = (android.os.IBinder.FIRST_CALL_TRANSACTION + 6); static final int TRANSACTION_isPlaying = (android.os.IBinder.FIRST_CALL_TRANSACTION + 7); static final int TRANSACTION_stop = (android.os.IBinder.FIRST_CALL_TRANSACTION + 8); static final int TRANSACTION_pause = (android.os.IBinder.FIRST_CALL_TRANSACTION + 9); static final int TRANSACTION_play = (android.os.IBinder.FIRST_CALL_TRANSACTION + 10); static final int TRANSACTION_noMusic = (android.os.IBinder.FIRST_CALL_TRANSACTION + 11); static final int TRANSACTION_playByIndex = (android.os.IBinder.FIRST_CALL_TRANSACTION + 12); static final int TRANSACTION_prev = (android.os.IBinder.FIRST_CALL_TRANSACTION + 13); static final int TRANSACTION_next = (android.os.IBinder.FIRST_CALL_TRANSACTION + 14); static final int TRANSACTION_getCurrentPlayIndex = (android.os.IBinder.FIRST_CALL_TRANSACTION + 15); static final int TRANSACTION_getMaxMusicLen = (android.os.IBinder.FIRST_CALL_TRANSACTION + 16); static final int TRANSACTION_duration = (android.os.IBinder.FIRST_CALL_TRANSACTION + 17); static final int TRANSACTION_getAlbumId = (android.os.IBinder.FIRST_CALL_TRANSACTION + 18); static final int TRANSACTION_position = (android.os.IBinder.FIRST_CALL_TRANSACTION + 19); static final int TRANSACTION_seek = (android.os.IBinder.FIRST_CALL_TRANSACTION + 20); static final int TRANSACTION_getLyricTime = (android.os.IBinder.FIRST_CALL_TRANSACTION + 21); static final int TRANSACTION_getTrackName = (android.os.IBinder.FIRST_CALL_TRANSACTION + 22); static final int TRANSACTION_getSongInfo = (android.os.IBinder.FIRST_CALL_TRANSACTION + 23); static final int TRANSACTION_getLyric = (android.os.IBinder.FIRST_CALL_TRANSACTION + 24); static final int TRANSACTION_getArtistName = (android.os.IBinder.FIRST_CALL_TRANSACTION + 25); static final int TRANSACTION_setQueuePosition = (android.os.IBinder.FIRST_CALL_TRANSACTION + 26); static final int TRANSACTION_getPath = (android.os.IBinder.FIRST_CALL_TRANSACTION + 27); static final int TRANSACTION_getAudioSessionId = (android.os.IBinder.FIRST_CALL_TRANSACTION + 28); } public void saveProgress(long pos) throws android.os.RemoteException; public void setPlayPosition(int pos) throws android.os.RemoteException; public void setMaxPosition(int max) throws android.os.RemoteException; public void setPlayMode(int mode) throws android.os.RemoteException; public void refreashList() throws android.os.RemoteException; public void openFile(java.lang.String path) throws android.os.RemoteException; public void findTheSong(boolean reLoad, boolean showToast) throws android.os.RemoteException; public boolean isPlaying() throws android.os.RemoteException; public void stop() throws android.os.RemoteException; public void pause() throws android.os.RemoteException; public void play() throws android.os.RemoteException; public boolean noMusic() throws android.os.RemoteException; public void playByIndex(int index, boolean play, boolean seekToBegin) throws android.os.RemoteException; public void prev() throws android.os.RemoteException; public void next() throws android.os.RemoteException; public int getCurrentPlayIndex() throws android.os.RemoteException; public int getMaxMusicLen() throws android.os.RemoteException; public long duration() throws android.os.RemoteException; public long getAlbumId() throws android.os.RemoteException; public long position() throws android.os.RemoteException; public long seek(long pos) throws android.os.RemoteException; public long[] getLyricTime() throws android.os.RemoteException; public java.lang.String getTrackName() throws android.os.RemoteException; public java.lang.String getSongInfo() throws android.os.RemoteException; public java.lang.String[] getLyric(long time) throws android.os.RemoteException; public java.lang.String getArtistName() throws android.os.RemoteException; public void setQueuePosition(int index) throws android.os.RemoteException; public java.lang.String getPath() throws android.os.RemoteException; public int getAudioSessionId() throws android.os.RemoteException; }