| | |
| | | import static org.opends.messages.QuickSetupMessages.*; |
| | | |
| | | import java.awt.Component; |
| | | import java.awt.*; |
| | | import java.awt.event.ActionListener; |
| | | import java.awt.GridBagConstraints; |
| | | import java.awt.GridBagLayout; |
| | | import java.awt.event.ActionEvent; |
| | | import java.awt.event.ActionListener; |
| | | import javax.swing.*; |
| | | |
| | | import org.opends.quicksetup.ui.GuiApplication; |
| | |
| | | return null; |
| | | } |
| | | |
| | | private TextArea detailsTextArea; |
| | | private JTextArea detailsTextArea; |
| | | private JCheckBox acceptCheck; |
| | | |
| | | /** |
| | |
| | | UIFactory.TextStyle.SECONDARY_FIELD_VALID); |
| | | |
| | | gbc.insets = UIFactory.getEmptyInsets(); |
| | | gbc.insets.bottom = 3; |
| | | panel.add(l, gbc); |
| | | |
| | | detailsTextArea = new TextArea(); |
| | | detailsTextArea = new JTextArea(10, 50); |
| | | detailsTextArea.setBackground( |
| | | UIFactory.CURRENT_STEP_PANEL_BACKGROUND); |
| | | |
| | |
| | | gbc.insets = UIFactory.getEmptyInsets(); |
| | | gbc.fill = GridBagConstraints.BOTH; |
| | | gbc.weighty = 1.0; |
| | | panel.add(detailsTextArea, gbc); |
| | | panel.add(new JScrollPane(detailsTextArea), gbc); |
| | | |
| | | acceptCheck = UIFactory.makeJCheckBox(INFO_LICENSE_CLICK_LABEL.get(), |
| | | null, |
| | |
| | | acceptCheck.setSelected(false); |
| | | |
| | | gbc.insets = UIFactory.getEmptyInsets(); |
| | | gbc.insets.top = UIFactory.TOP_INSET_RADIO_SUBORDINATE; |
| | | gbc.fill = GridBagConstraints.BOTH; |
| | | gbc.weighty = 0.0; |
| | | panel.add(acceptCheck, gbc); |