analyzeportfolioremote.java

来自「100多M的J2EE培训内容」· Java 代码 · 共 46 行

JAVA
46
字号
package bible.ejb.session.example2;import java.rmi.*;import javax.ejb.*;/** * Interface AnalyzePortfolioRemote * * * @author * @version %I%, %G% */public interface AnalyzePortfolioRemote extends EJBObject {  /**   * Adds a holding.   */  public void addHolding(String name, Integer amount) throws RemoteException;  /**   * Adds a debt.   */  public void addDebt(String name, Integer amount) throws RemoteException;  /**   * Returns a detailed analysis of the current state.   */  public String getAnalysis() throws RemoteException;  /**   * Returns true if they have the financial strength to qualify for   * a gold account.   */  public boolean qualifiesForGoldAccount() throws RemoteException;}/*--- Formatted in Bible Style on Thu, Sep 6, '01 ---*//*------ Formatted by Jindent 3.24 Gold 1.02 --- http://www.jindent.de ------*/

⌨️ 快捷键说明

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