?? transervice.java
字號:
package jaction.ejb;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
/**
* TranService接口<br>
* @author yanger
* @version 1.4
*/
public interface TranService extends EJBObject{
/**
* 事務服務
* @param tu 系統接口單元(環境)
* @return TranUnit 系統接口單元(結果)
* @exception RemoteException
*/
public TranUnit tranService(TranUnit tu) throws RemoteException;
/**
* 測試方法
* @return String
*/
public String testService() throws RemoteException;
/**
* 測試方法
* @param tu 系統接口單元
* @return
*/
public String testService(TranUnit tu) throws RemoteException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -