⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 btutilclientlistener.java

📁 A bluetooth SMS patcher Java ME application I made quickly after I thought about making one. What i
💻 JAVA
字号:
/* * BtUtilClientListener.java * * Created on August 3, 2006, 6:04 PM */package BtUtil;import java.util.Vector;import javax.bluetooth.RemoteDevice;/** * Every object interested in receive bluetooth client notifications must * implement this interface. * * @author alegomes */public interface BtUtilClientListener {    /**     * Method invoked when a new device is discovered by the inquiry process     * started by the <code>BtUtil.discoverDevicesAsync()</code> method.     * @param device A reference to the just discovered device.     */    public void deviceDiscovered(RemoteDevice device);    /**     * Method invoked when inquiry process started by the     * <code>BtUtil.discoverDevicesAsync()</code> method is finished.     * @param devices A list of javax.bluetooth.RemoteDevice objetcts.     */    public void deviceDiscoveryFinished(Vector devices);    /**     * Method invoked when the service discovery process, started by the     * <code>BtUtil.discoverServicesAsync()</code>, is finished.     * @param services A list of javax.bluetooth.ServiceRecord objects.     */    public void serviceDiscoveryFinished(Vector services);    /**     * Method invoked when a device inquiry or a service discovery fails and     * a new one is about to start.     * @param _try The try number.     */    public void tryingAgain(int _try);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -