iposition.java

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

JAVA
27
字号
package com.libGPS4j2me;

/**
* This interface is implemented by all packets capable of returning a position.
*/
public interface IPosition {
	/**
	* This method returns the latitude of the position in Radians.
	*/
	public PositionRadians getLatitude();
	
        /**
	* This method returns the latitude of the position as String.
	*/
	public String getLatituteStr();
        
        /**
	* This method returns the longitude of the position in Radians.
	*/
	public PositionRadians getLongitude();
        
        /**
	* This method returns the longitude of the position as String.
	*/
        public String getLongitudeStr();
        
};

⌨️ 快捷键说明

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