shoppingcartbean.java~9~

来自「100多M的J2EE培训内容」· JAVA~9~ 代码 · 共 42 行

JAVA~9~
42
字号
package sfsbsample;import javax.ejb.*;public class ShoppingCartBean implements SessionBean {  SessionContext sessionContext;  public void ejbCreate() throws CreateException {    /**@todo Complete this method*/  }  public void ejbCreateCustom(String aUserId, String aUserName) throws CreateException {    /**@todo Complete this method*/  }  public void ejbRemove() {    /**@todo Complete this method*/  }  public void ejbActivate() {    /**@todo Complete this method*/  }  public void ejbPassivate() {    /**@todo Complete this method*/  }  public void setSessionContext(SessionContext sessionContext) {    this.sessionContext = sessionContext;  }  public void addASchedule(ScheduleVO schedule) {    /**@todo Complete this method*/  }  public void deleteASchedule(String ScheduleId) {    /**@todo Complete this method*/  }  public java.util.Vector getMyScheduleList() {    /**@todo Complete this method*/    return null;  }  public void emptyMyScheduleList() {    /**@todo Complete this method*/  }  public double getTotalCost() {    /**@todo Complete this method*/    return 0;  }}

⌨️ 快捷键说明

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