entitynotfounddelegate.java
来自「一个Java持久层类库」· Java 代码 · 共 13 行
JAVA
13 行
package org.hibernate.proxy;
import java.io.Serializable;
/**
* Delegate to handle the scenario of an entity not found by a specified id.
*
* @author Steve Ebersole
*/
public interface EntityNotFoundDelegate {
public void handleEntityNotFound(String entityName, Serializable id);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?