idate.java

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

JAVA
15
字号
package com.libGPS4j2me;

/**
* This interface is implemented by all packets capable of returning a date.
*/
public interface IDate {
	/** Returns the day of the month. */
	public short getDay();
	
	/** Returns the month. */
	public short getMonth();
	
	/** returns the year. */
	public int getYear();	
};

⌨️ 快捷键说明

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