if (b instanceof ExceptionBreakpoint)
c = new ExceptionBreakpointPanel ((ExceptionBreakpoint) b);
c.getAccessibleContext().setAccessibleDescription(
NbBundle.getMessage(BreakpointsActionsProvider.class, "ACSD_Breakpoint_Customizer_Dialog")); // NOI18N
HelpCtx helpCtx = HelpCtx.findHelp (c);
if (helpCtx == null) {
helpCtx = new HelpCtx ("debug.add.breakpoint"); // NOI18N
}
final Controller[] cPtr = new Controller[] { (Controller) c };
final DialogDescriptor[] descriptorPtr = new DialogDescriptor[1];
final Dialog[] dialogPtr = new Dialog[1];
ActionListener buttonsActionListener = new ActionListener() {