public void requestFocus() {
encryptionBox.requestFocusInWindow();
}
private JComponent createDisplayer() {
BoxBuilder col = BoxBuilder.vertical().leftAligned();
col.addAllWithSpace(10, layoutEncryptionSection(), layoutOptionsSection());
col.setBorder(new BorderBuilder().empty(8, 32, 0, 0).titled(null));
DropDownPanel dropDown = new DropDownPanel(col.container(), Strings.get("Options"), false);
dropDown.decorateTitle(WizardStyleSheet.MEDIUM_CAPTION_STYLE);
return dropDown.getDisplayer();
}