1 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵ | | |
|
2 | PhoneModel.TYPE_OTHER_FAX));↵ | | |
|
3 | else if (telephoneComboBox.getSelectedIndex() == 12)↵ | | 1 | if (telephoneComboBox.getSelectedIndex() == 12)↵
|
4 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵ | | 2 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵
|
5 | PhoneModel.TYPE_PAGER));↵ | | 3 | PhoneModel.TYPE_PAGER));↵
|
6 | else if (telephoneComboBox.getSelectedIndex() == 13)↵ | | 4 | else if (telephoneComboBox.getSelectedIndex() == 13)↵
|
7 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵ | | 5 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵
|
8 | PhoneModel.TYPE_PRIMARY_PHONE));↵ | | 6 | PhoneModel.TYPE_PRIMARY_PHONE));↵
|
9 | else if (telephoneComboBox.getSelectedIndex() == 14)↵ | | 7 | else if (telephoneComboBox.getSelectedIndex() == 14)↵
|
10 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵ | | 8 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵
|
11 | PhoneModel.TYPE_RADIO));↵ | | 9 | PhoneModel.TYPE_RADIO));↵
|
12 | else if (telephoneComboBox.getSelectedIndex() == 15)↵ | | 10 | else if (telephoneComboBox.getSelectedIndex() == 15)↵
|
13 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵ | | 11 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵
|
14 | PhoneModel.TYPE_TELEX)); | | 12 | PhoneModel.TYPE_TELEX));↵
|
| | | 13 | else if (telephoneComboBox.getSelectedIndex() == 16)↵
|
| | | 14 | destModel.addPhone(new PhoneModel(telephoneTextField.getText(),↵
|
| | | 15 | PhoneModel.TYPE_TTY));
|