identifiable.java

来自「XDoclet 使自动生成部署描述符更为便利。XDoclet 是一个代码生成实用」· Java 代码 · 共 10 行

JAVA
10
字号
package test.interfaces;

/**
 * This interface can be implemented by objects that have a
 * String id (primary key) and a getter for it. At the client side
 * the developer can cast using this interface to obtain the id.
 */
public interface Identifiable {
    public java.lang.String getId();
}

⌨️ 快捷键说明

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