if (condition != null) {
condition = StringUtils.replaceAll(condition, "\n", "@_@NEW_LINE_CHAR@_@");
condition = StringUtils.replaceAll(condition, "\t", "@_@TAB_CHAR@_@");
}
}
SetBreakpointCommand cmd = new SetBreakpointCommand(this, b.getFile(), b.getLine(), condition,
b.getFunctionName());
this.postCommand(cmd);
}
}
} catch (CoreException e) {