Package org.eclipse.ecf.provider.irc.internal.bot

Examples of org.eclipse.ecf.provider.irc.internal.bot.CommandEntry


        String expression = elements[i].getAttribute("expression");
        ICommandHandler handler = (ICommandHandler) elements[i].createExecutableExtension("class");
        List c = (List) commands.get(id);
        if(c == null) {
          c = new ArrayList();
          c.add(new CommandEntry(expression, handler));
          commands.put(id, c);
        } else {
          c.add(new CommandEntry(expression, handler));
          commands.put(id, c);
        }
      }
 
      // load the bots
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.provider.irc.internal.bot.CommandEntry

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.