Examples of LobbyListener


Examples of org.cspoker.common.api.lobby.listener.LobbyListener

  private static Logger logger = Logger.getLogger(TestAPI.class);

  public void testCreateTable(){
    try {
      kenzo = new ServerContextImpl("kenzo", "test");
      LobbyListener listener = new LobbyListener(){

        public void onTableCreated(TableCreatedEvent tableCreatedEvent) {
          TestAPI.logger.info(tableCreatedEvent);
        }
        public void onTableRemoved(TableRemovedEvent tableRemovedEvent) {
View Full Code Here

Examples of org.mctourney.autoreferee.listeners.lobby.LobbyListener

    PluginManager pm = getServer().getPluginManager();
    PracticeCommands practice = new PracticeCommands(this);

    String lobbymode = getConfig().getString("lobby.mode", "manual");
    LobbyListener lobbyListener = LobbyMode.fromConfig(lobbymode).getInstance(this);

    // listener utility classes, subdivided for organization
    pm.registerEvents(new TeamListener(this), this);
    pm.registerEvents(new CombatListener(this), this);
    pm.registerEvents(new ZoneListener(this), this);
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.