📄 addresslocal.java
字号:
package com.ebusiness.ebank.ejb.entitybean;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: eBusiness Inc., All right reserved</p> * @author unascribed * @version 1.0 */import javax.ejb.EJBLocalObject;import javax.ejb.EJBException;import com.ebusiness.ebank.bean.AddressValue;import com.ebusiness.ebank.exception.BusinessException;public interface AddressLocal extends EJBLocalObject{ //Business methods public AddressValue getValueObject() throws EJBException; public AddressValue getLiteValueObject() throws EJBException; //public long getAddressOID() throws EJBException; public AddressValue update(AddressValue value) throws EJBException, BusinessException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -