use of jgnash.ui.components.TransactionNumberComboBox in project jgnash by ccavanaugh.
the class DateChkNumberDialog method initComponents.
private void initComponents() {
datePanel = new DatePanel();
numberCombo = new TransactionNumberComboBox(account);
okButton = new JButton(rb.getString("Button.Ok"));
cancelButton = new JButton(rb.getString("Button.Cancel"));
okButton.addActionListener(this);
cancelButton.addActionListener(this);
getRootPane().setDefaultButton(okButton);
}
Aggregations