itransferlistener.java

来自「A Java Framework for connecting to and e」· Java 代码 · 共 18 行

JAVA
18
字号
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 + =
减小字号Ctrl + -
显示快捷键?