private void initialize() {
nameField = new JTextField();
descriptionField = new JTextArea(3, 20);
JScrollPane descriptionPane = new JScrollPane(descriptionField, ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER,
ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
applicationPanel = new ApplicationPanel(this, ApplicationPanel.NODIALOGBORDER);
setProperties();
JPanel buildOKCancelBar = createButtonBar();
DefaultFormBuilder builder = new DefaultFormBuilder(new FormLayout("fill:pref:n, 3dlu, pref:grow, 3dlu", ""));
builder.setDefaultDialogBorder();