enterprise1bean.java~2~
来自「一个java」· JAVA~2~ 代码 · 共 46 行
JAVA~2~
46 行
package bookstore.ejb;import javax.ejb.*;public class Enterprise1Bean implements EntityBean { EntityContext entityContext; java.lang.String untitledField1; public java.lang.String ejbCreate(java.lang.String untitledField1) throws CreateException { setUntitledField1(untitledField1); return null; } public void ejbPostCreate(java.lang.String untitledField1) throws CreateException { /**@todo Complete this method*/ } public void ejbRemove() throws RemoveException { /**@todo Complete this method*/ } public void setUntitledField1(java.lang.String untitledField1) { this.untitledField1 = untitledField1; } public java.lang.String getUntitledField1() { return untitledField1; } public java.lang.String ejbFindByPrimaryKey(java.lang.String untitledField1) throws FinderException { /**@todo Complete this method*/ return null; } 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 + =
减小字号Ctrl + -
显示快捷键?