timerid.java

来自「jainslee1.0 源代码」· Java 代码 · 共 29 行

JAVA
29 行
字号
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 + =
减小字号Ctrl + -
显示快捷键?