📄 accountcmp.java
字号:
/* * Generated by XDoclet - Do not edit! */package com.sample.cmp.account;/** * CMP layer for Account. * @generated * @lomboz generated */public abstract class AccountCMP extends com.sample.cmp.account.AccountBean implements javax.ejb.EntityBean{ public com.sample.cmp.account.AccountData getData() { com.sample.cmp.account.AccountData dataHolder = null; try { dataHolder = new com.sample.cmp.account.AccountData(); dataHolder.setAccountID( getAccountID() ); dataHolder.setUserID( getUserID() ); dataHolder.setRegistrationFee( getRegistrationFee() ); } catch (RuntimeException e) { throw new javax.ejb.EJBException(e); } return dataHolder; } public void ejbLoad() { } public void ejbStore() { } public void ejbActivate() { } public void ejbPassivate() { } public void setEntityContext(javax.ejb.EntityContext ctx) { } public void unsetEntityContext() { } public void ejbRemove() throws javax.ejb.RemoveException { } /* Value Objects BEGIN *//* Value Objects END */ public abstract java.lang.Integer getAccountID() ; public abstract void setAccountID( java.lang.Integer accountID ) ; public abstract java.lang.Integer getUserID() ; public abstract void setUserID( java.lang.Integer userID ) ; public abstract java.math.BigDecimal getRegistrationFee() ; public abstract void setRegistrationFee( java.math.BigDecimal registrationFee ) ;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -