break;
case CONTROLS_YES_NO:
button = new Button(Messages.getString("Generic.Yes"), Styles.ICON_24_YES);
button.setStyleName("ControlPane.Button");
button.setActionCommand(COMMAND_OK);
button.addActionListener(actionProcessor);
controlsRow.add(button);
button = new Button(Messages.getString("Generic.No"), Styles.ICON_24_NO);
button.setStyleName("ControlPane.Button");
button.setActionCommand(COMMAND_CANCEL);
button.addActionListener(actionProcessor);