this.projectKeyPattern = Pattern.compile((String)params.get("irccat.projectkeyregex"), Pattern.CASE_INSENSITIVE);
}
this.host = (String)params.get("irccat.host");
this.port = Integer.parseInt((String)params.get("irccat.port"));
this.channel = (String)params.get("irccat.channel");
ApplicationProperties a = ManagerFactory.getApplicationProperties();
Iterator keys = a.getKeys().iterator();
while (keys.hasNext()) {
String b = (String)keys.next();
System.err.println(b + " = " + a.getString(b));
}
}