📄 datapopulator.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : DataPopulator.java
* Creation/Modification History :
*
* Neelesh 26-Dec-2002 Created
*
*/
package oracle.otnsamples.vsm.services;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
/**
* The EJB interface is used to populate the persistence with an initial set of
* data,using entity beans - in English and French.
*/
public interface DataPopulator extends EJBObject {
/**
* The method initializes test data for the application.
*
* @throws RemoteException if there was an exception populating data
*/
void populate() throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -