String server = elements[i].getAttribute("server");
String channel = elements[i].getAttribute("channel");
List c = (List) commands.get(id);
if(c == null)
c = new ArrayList();
IBotEntry bot = new BotEntry(id, name, server, channel, c);
bots.put(id, bot);
}
}
}