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

📄 bmpaccountbmp.java

📁 J2EE 技术 源码 书籍源代码(j2ee编程技术)
💻 JAVA
字号:
/* * Generated by XDoclet - Do not edit! */package com.ejbstudy;/** * BMP layer for BMPAccount. * @lomboz generated */public class BMPAccountBMP   extends com.ejbstudy.BMPAccountBean   implements javax.ejb.EntityBean{   public boolean isModified()   {      return dirty;   }   protected void makeDirty()   {      dirty = true;   }   protected void makeClean()   {      dirty = false;   }   private boolean dirty = false;   public com.ejbstudy.BMPAccountData getData()   {      com.ejbstudy.BMPAccountData dataHolder = null;      try      {         dataHolder = new com.ejbstudy.BMPAccountData();      }      catch (RuntimeException e)      {         throw new javax.ejb.EJBException(e);      }      return dataHolder;   }   public void ejbLoad()    {      super.ejbLoad();      makeClean();   }   public void ejbStore()    {      if (isModified())      {         super.ejbStore();         makeClean();      }   }   public void ejbActivate()    {      super.ejbActivate();   }   public void ejbPassivate()    {      super.ejbPassivate();   }   public void setEntityContext(javax.ejb.EntityContext ctx)    {      super.setEntityContext(ctx);   }   public void unsetEntityContext()    {      super.unsetEntityContext();   }   public void ejbRemove() throws javax.ejb.RemoveException   {      super.ejbRemove();   }   /* Value Objects BEGIN *//* Value Objects END */}

⌨️ 快捷键说明

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