⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timerid.java

📁 jainslee1.0 源代码
💻 JAVA
字号:
package javax.slee.facilities;/** * A <code>TimerID</code> is used to identify a timer started by an SBB entity. */public interface TimerID {    /**     * Compare this timer ID for equality with another.     * @param obj the object to compare this with.     * @return <code>true</code> if <code>obj</code> is an instance of this class     *        representing the same timer as this, <code>false</code> otherwise.     */    public boolean equals(Object obj);    /**     * Get a hash code value for this timer ID.     * @return a hash code value.     */    public int hashCode();    /**     * Get the textual representation of the timer ID object.     * @return the textual representation of the timer ID object.     */    public String toString();}

⌨️ 快捷键说明

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