Changeset 14:3a12bd9312b1
- Timestamp:
- 03/30/12 15:20:56 (13 years ago)
- Author:
- František Kučera <franta-hg@…>
- Branch:
- default
- Message:
-
Doplňování jména a adresy odesílatele na základě hodnot „odpovědět komu“ (přidáme noreply).
- Location:
- java/SuperPostak/src/cz/frantovo/superPostak
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
r5
|
r14
|
|
1 | | <?xml version="1.1" encoding="UTF-8" ?> |
| 1 | <?xml version="1.0" encoding="UTF-8" ?> |
2 | 2 | |
3 | 3 | <Form version="1.3" maxVersion="1.5" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> |
-
r13
|
r14
|
|
1088 | 1088 | private void odpovedetKomuHotovoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_odpovedetKomuHotovoActionPerformed |
1089 | 1089 | odpovedetKomuDialog.setVisible(false); |
| 1090 | |
| 1091 | if (vstupJmenoOdesilatele.getText().isEmpty()) { |
| 1092 | vstupJmenoOdesilatele.setText(odpovedetKomuJmeno.getText()); |
| 1093 | } |
| 1094 | |
| 1095 | if (vstupAdresaOdesilatele.getText().isEmpty()) { |
| 1096 | String[] částiAdresy = odpovedetKomuAdresa.getText().split("@"); |
| 1097 | if (částiAdresy.length == 2) { |
| 1098 | vstupAdresaOdesilatele.setText("noreply@" + částiAdresy[1]); |
| 1099 | } |
| 1100 | } |
1090 | 1101 | }//GEN-LAST:event_odpovedetKomuHotovoActionPerformed |
1091 | 1102 | |