private void handleIgnorable(String configstr) {
int configLen = configstr.indexOf(' ');
String realMsg = configstr.substring(configLen + 1);
configstr = configstr.substring(0, configLen);
OptionUI oui = new OptionUI();
oui.promptWithCheckbox(null, realMsg, "Alert", configstr, JOptionPane.PLAIN_MESSAGE, JOptionPane.OK_OPTION);
}
private void handleNotify(String msg, String notifyMsg) {
if (Platform.isTrayEnabled()) {
MQFactory.getConcrete("tray").enqueue(msg);