package pl.polidea.lab.microlog4e.btserver;
/**
* The default implementation of the BluetoothServerListener. If a separate
* BluetoothServerListener is set, this class is not used.
*
* @author Jarle Hansen (hansjar@gmail.com)
* @author Marek Gocal (marcin.gocal@gmail.com)
*/
class DefaultServerListener implements BluetoothServerListener {
DefaultServerListener() {}
public void deviceConnected(String address, String name) {}
public void deviceDisconnected(String address, String name) {}
public void messageReceived(String message) {}
public void serverStarted(String url) {}
public void shutdown() {}
}
|