Package org.eclipse.ecf.presence.bot

Examples of org.eclipse.ecf.presence.bot.IChatRoomBotEntry


        }

        List c = (List) chatbotcommands.get(id);
        if (c == null)
          c = new ArrayList();
        IChatRoomBotEntry bot = new ChatRoomBotEntry(id, name,
            containerFactoryName, connectID, password,
            chatRoomNames, chatRoomPasswords, c);
        chatroombots.put(id, bot);
      }
    }
View Full Code Here


  public Object start(IApplicationContext context) throws Exception {

    Map bots = getBotsFromExtensionRegistry();

    for (Iterator it = bots.values().iterator(); it.hasNext();) {
      IChatRoomBotEntry entry = (IChatRoomBotEntry) it.next();
      // Create default chat room bot
      ChatRoomBot bot = new ChatRoomBot(entry);
      // connect
      bot.connect();
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.presence.bot.IChatRoomBotEntry

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.