itime.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 the time of day.
*/
public interface ITime {
/** Returns the hour of the day. */
public int getHours();
/** Returns the minute of the hour. */
public short getMinutes();
/** Returns the second of the minute. */
public short getSeconds();
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?