⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memberorderprocejavabean.java~1~

📁 使用EJB + JSP + JavaBean + Servlet开发的一个远程销售通用平台
💻 JAVA~1~
字号:
package flowershoporder.ejb;import java.rmi.*;import javax.ejb.*;public class MemberOrderProcEJavaBean implements EntityBean {  EntityContext entityContext;  public String ejbCreate() throws CreateException {    /**@todo Implement this method*/    return null;  }  public void ejbPostCreate() throws CreateException {  }  public void ejbLoad() {  }  public void ejbStore() {  }  public void ejbRemove() throws RemoveException {  }  public void ejbActivate() {  }  public void ejbPassivate() {  }  public void setEntityContext(EntityContext entityContext) {    this.entityContext = entityContext;  }  public void unsetEntityContext() {    entityContext = null;  }  public String ejbFindByPrimaryKey(String primKey) throws ObjectNotFoundException {    /**@todo Implement this method*/    return null;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -