/**@class android.bluetooth.BluetoothPbap.ServiceListener
 An interface for notifying Bluetooth PCE IPC clients when they have
 been connected to the BluetoothPbap service.
*/
var ServiceListener = {

/**Called to notify the client when this proxy object has been
 connected to the BluetoothPbap service. Clients must wait for
 this callback before making IPC calls on the BluetoothPbap
 service.
*/
onServiceConnected : function(  ) {},

/**Called to notify the client that this proxy object has been
 disconnected from the BluetoothPbap service. Clients must not
 make IPC calls on the BluetoothPbap service after this callback.
 This callback will currently only occur if the application hosting
 the BluetoothPbap service, but may be called more often in future.
*/
onServiceDisconnected : function(  ) {},


};