account.java

来自「《精通SOA:基于服务总线的Struts+EJB+Web Service整合应用」· Java 代码 · 共 57 行

JAVA
57
字号
/* * Generated by XDoclet - Do not edit! */package com.sample.cmp.account;/** * Remote interface for Account. * @generated  * @lomboz generated */public interface Account   extends javax.ejb.EJBObject{   /**    * <!-- begin-user-doc --> CMP Field accountID Returns the accountID    * @return the accountID <!-- end-user-doc --> <!-- begin-xdoclet-definition -->    * @generated     */   public java.lang.Integer getAccountID(  )      throws java.rmi.RemoteException;   /**    * <!-- begin-user-doc --> Sets the accountID    * @param java.lang.Integer the new accountID value <!-- end-user-doc --> <!-- begin-xdoclet-definition -->    * @generated     */   public void setAccountID( java.lang.Integer accountID )      throws java.rmi.RemoteException;   /**    * <!-- begin-user-doc --> CMP Field userID Returns the userID    * @return the userID <!-- end-user-doc --> <!-- begin-xdoclet-definition -->    * @generated     */   public java.lang.Integer getUserID(  )      throws java.rmi.RemoteException;   /**    * <!-- begin-user-doc --> Sets the userID    * @param java.lang.Integer the new userID value <!-- end-user-doc --> <!-- begin-xdoclet-definition -->    * @generated     */   public void setUserID( java.lang.Integer userID )      throws java.rmi.RemoteException;   /**    * <!-- begin-user-doc --> CMP Field registrationFee Returns the registrationFee    * @return the registrationFee <!-- end-user-doc --> <!-- begin-xdoclet-definition -->    * @generated     */   public java.math.BigDecimal getRegistrationFee(  )      throws java.rmi.RemoteException;   /**    * <!-- begin-user-doc --> Sets the registrationFee    * @param java.math.BigDecimal the new registrationFee value <!-- end-user-doc --> <!-- begin-xdoclet-definition -->    * @generated     */   public void setRegistrationFee( java.math.BigDecimal registrationFee )      throws java.rmi.RemoteException;}

⌨️ 快捷键说明

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