Package uk.co.thomasc.scrapbanktf.scrap.listeners

Examples of uk.co.thomasc.scrapbanktf.scrap.listeners.ScrapTrade


    });

    msg.handle(SessionStartCallback.class, new ActionT<SessionStartCallback>() {
      @Override
      public void call(SessionStartCallback call) {
        TradeListener listener = new ScrapTrade(Bot.this);
        if (BotInfo.getAdmins().contains(call.getOtherClient().convertToLong())) {
          listener = new AdminTrade(Bot.this);
        } else if (Main.bots.contains(call.getOtherClient())) {
          listener = new ExchangeTrade(Bot.this);
        }
View Full Code Here

TOP

Related Classes of uk.co.thomasc.scrapbanktf.scrap.listeners.ScrapTrade

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.