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

📄 producttypeinfoentbean.java~38~

📁 这也是师兄的毕业设计,具体的功能我也不清楚,因为我才大一,请见谅!!!!!!!不过是可以用来答辩的,完整的毕业设计,有源代码,可爱执行文件,文档资料.
💻 JAVA~38~
字号:
package product;import javax.ejb.*;abstract public class productTypeInfoEntBean implements EntityBean {  EntityContext entityContext;  public productTypeInfoEntPK ejbCreate(String p_type_id, java.lang.String p_type_name, String p_type_remark) throws CreateException {    setP_type_id(p_type_id);    setP_type_name(p_type_name);    setP_type_remark(p_type_remark);    return null;  }  public void ejbPostCreate(String p_type_id, java.lang.String p_type_name, String p_type_remark) throws CreateException {    /**@todo Complete this method*/  }  public void ejbRemove() throws RemoveException {    /**@todo Complete this method*/  }  public abstract void setP_type_id(String p_type_id);  public abstract void setP_type_name(java.lang.String p_type_name);  public abstract void setP_type_remark(String p_type_remark);  public abstract String getP_type_id();  public abstract java.lang.String getP_type_name();  public abstract String getP_type_remark();  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 + -