📄 keygenerator.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the Application : KeyGenerator.java
* Creation/Modification History :
*
* Neelesh 23-Feb-2003 Created
*
*/
package oracle.otnsamples.util;
/**
* The interface specifies a contract for various strategies of unique id
* generation. All implementations for key generations must implement this
* interface.
*
* @author Neelesh
* @version 1.0
*/
public interface KeyGenerator {
/**
* Returns a globally unique id.
*
* @return <b>String</b> unique id
*/
public String getKey();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -