Examples of TradeDialog


Examples of ch.sahits.game.graphic.display.dialog.TradeDialog

          new ViewChangeEvent(NoticeView.class).notify(proxy);
          // Open the dialog
          final double dialogScale = scaleMap.get(SCENE_IMAGE_NAME);
          if (city.getActiveShip()!=null){
            // city 2 ship
            dialogUpdater.updateDialog(new TradeDialog(topLeft, dialogScale,city,ETransferDialogType.CITY_TO_SHIP));
          } else if (city.getPlayer().findBuildings(city.getCity())!=null){
            // city 2 branch office
            dialogUpdater.updateDialog(new TradeDialog(topLeft, dialogScale,city,ETransferDialogType.CITY_TO_STORAGE));
          }
        }
      } // end loading crane
      else if (polyName.equals(polyNames[1])){ // stairs
        // replace the scene with the market scene
View Full Code Here

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

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

     * 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
Copyright © 2018 www.massapi.com. 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.