Package org.pokenet.client.ui.frames

Examples of org.pokenet.client.ui.frames.TradeDialog


   * Pops up the trade dialog
   * @param pokes
   * @param player
   */
  public void openTrade(String player){
    new TradeDialog(player);
  }
View Full Code Here


     * Starts a trade
     * @param pokeNums
     * @param trainer
     */
    public void startTrade(String trainer){
      m_trade = new TradeDialog(trainer);
      m_display.add(m_trade);
    }
View Full Code Here

TOP

Related Classes of org.pokenet.client.ui.frames.TradeDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.