📄 fundaccountbean.java
字号:
package com.fund.client;
import javax.ejb.EntityBean;
import javax.ejb.EntityContext;
import javax.ejb.CreateException;
import javax.ejb.RemoveException;
/**
*
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public abstract class FundAccountBean implements EntityBean {
/**
*
*/
EntityContext entityContext;
/**
*
* @param fundAccNo Integer
* @return Integer
* @throws CreateException e
*/
public Integer ejbCreate(Integer fundAccNo) throws CreateException {
setFundAccNo(fundAccNo);
return null;
}
/**
*
* @param fundAccNo Integer
* @throws CreateException e
*/
public void ejbPostCreate(Integer fundAccNo) throws CreateException {
}
/**
*
* @throws RemoveException e
*/
public void ejbRemove() throws RemoveException {
}
/**
*
* @param fundAccNo Integer
*/
public abstract void setFundAccNo(Integer fundAccNo);
/**
*
* @return Integer
*/
public abstract Integer getFundAccNo();
/**
*
* @param financialAccNo Integer
*/
public abstract void setFinancialAccNo(Integer financialAccNo);
/**
*
* @return Integer
*/
public abstract Integer getFinancialAccNo();
/**
*
* @param fundNo Integer
*/
public abstract void setFundNo(Integer fundNo);
/**
*
* @return Integer
*/
public abstract Integer getFundNo();
/**
*
* @param quantity Integer
*/
public abstract void setQuantity(Integer quantity);
/**
*
* @return Integer
*/
public abstract Integer getQuantity();
/**
*
* @param price Double
*/
public abstract void setPrice(Double price);
/**
*
* @return Double
*/
public abstract Double getPrice();
/**
*
*/
public void ejbLoad() {
}
/**
*
*/
public void ejbStore() {
}
/**
*
*/
public void ejbActivate() {
}
/**
*
*/
public void ejbPassivate() {
}
/**
*
* @param entityContext EntityContext
*/
public void setEntityContext(EntityContext entityContext) {
this.entityContext = entityContext;
}
/**
*
*/
public void unsetEntityContext() {
this.entityContext = null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -