()
| 100 | } |
| 101 | |
| 102 | public int showDialog() { |
| 103 | |
| 104 | |
| 105 | dialog.setVisible(true); |
| 106 | |
| 107 | int result = JOptionPane.CANCEL_OPTION; |
| 108 | Integer value = (Integer)optionPane.getValue(); |
| 109 | if (value != null && value.intValue() != -1) { |
| 110 | result = value.intValue(); |
| 111 | } |
| 112 | |
| 113 | if (result == JOptionPane.OK_OPTION) { |
| 114 | |
| 115 | } |
| 116 | |
| 117 | return result; |
| 118 | } |
| 119 | |
| 120 | public Format getFormat() { |
| 121 | return (Format)formatCombo.getSelectedItem(); |
no test coverage detected