📄 itime.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -