if (line.toUpperCase().startsWith("NEWTOPIC ")) {
String user = line.substring("NEWTOPIC ".length(), line
.indexOf(':'));
String topic = line.substring(line.indexOf(':') + 2);
Controller.getInstance().dispatchEvent(
new TopicChangedEvent(user, topic));
return;
}
if (line.toUpperCase().startsWith("NICKINUSE ")) {
String nick = line.substring("NICKINUSE ".length());