?? trader.java
字號:
/*
* Generated by XDoclet - Do not edit!
*/
package com.genuitec.traderx.interfaces;
/**
* Remote interface for Trader.
* @xdoclet-generated at ${TODAY}
* @copyright The XDoclet Team
* @author XDoclet
* @version 2.2.D11
*/
public interface Trader
extends javax.ejb.EJBObject
{
/**
* Buys shares of a stock for a named customer.
* @param stockSymbol String Stock symbol
* @param shares int Number of shares to buy
* @return TradeResult Trade Result if there is an error while buying the shares
*/
public com.genuitec.traderx.ejb.TradeResult buy( java.lang.String stockSymbol,int shares )
throws java.rmi.RemoteException;
/**
* Sells shares of a stock for a named customer.
* @param stockSymbol String Stock symbol
* @param shares int Number of shares to buy
* @return TradeResult Trade Result if there is an error while selling the shares
*/
public com.genuitec.traderx.ejb.TradeResult sell( java.lang.String stockSymbol,int shares )
throws java.rmi.RemoteException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -