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

📄 itransferlistener.java

📁 A Java Framework for connecting to and exchanging data from GPS units to J2ME Mobile Devices. Serial
💻 JAVA
字号:
package com.libGPS4j2me;

/**
* The methods in this interface are used whenever the GPS should transfer a series of data. 
*/
public interface ITransferListener {
	/** 
	* This method is called when a transfer is initiated. <br/>
	* Number is the amount of data that will be transferred, ie. the amount of waypoints.
	* If it's not possible to tell how much data that will be transferred, number will be -1.
	*/
	public void transferStarted(int number);
	
	/**
	* This method is called when the transfer is complete.
	*/
	public void transferComplete();
}

⌨️ 快捷键说明

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