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

📄 accountnamebean.java~6~

📁 一个使用java 写的进销存代码 使用了ejb 等技术 是学习j2ee的好
💻 JAVA~6~
字号:
package stockmanagementpro;import javax.ejb.*;abstract public class AccountNameBean implements EntityBean {  EntityContext entityContext;  public java.lang.Integer ejbCreate(java.lang.Integer accountId, int parentId, java.lang.String accountName) throws CreateException {    setAccountId(accountId);    setParentId(parentId);    setAccountName(accountName);    return null;  }  public void ejbPostCreate(java.lang.Integer accountId, int parentId, java.lang.String accountName) throws CreateException {    /**@todo Complete this method*/  }  public void ejbRemove() throws RemoveException {    /**@todo Complete this method*/  }  public abstract void setAccountId(java.lang.Integer accountId);  public abstract void setParentId(int parentId);  public abstract void setAccountName(java.lang.String accountName);  public abstract java.lang.Integer getAccountId();  public abstract int getParentId();  public abstract java.lang.String getAccountName();  public void ejbLoad() {    /**@todo Complete this method*/  }  public void ejbStore() {    /**@todo Complete this method*/  }  public void ejbActivate() {    /**@todo Complete this method*/  }  public void ejbPassivate() {    /**@todo Complete this method*/  }  public void unsetEntityContext() {    this.entityContext = null;  }  public void setEntityContext(EntityContext entityContext) {    this.entityContext = entityContext;  }}

⌨️ 快捷键说明

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