| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MyComboBoxEditor |
|
| 1.0;1 |
| 1 | package br.mia.test.model; | |
| 2 | ||
| 3 | import javax.swing.DefaultCellEditor; | |
| 4 | import javax.swing.JComboBox; | |
| 5 | ||
| 6 | public class MyComboBoxEditor extends DefaultCellEditor { | |
| 7 | /** | |
| 8 | * | |
| 9 | */ | |
| 10 | private static final long serialVersionUID = 1L; | |
| 11 | public MyComboBoxEditor(String[] items) { | |
| 12 | 0 | super(new JComboBox(items)); |
| 13 | 0 | } |
| 14 | public MyComboBoxEditor(Object[] items) { | |
| 15 | 0 | super(new JComboBox(items)); |
| 16 | 0 | } |
| 17 | } |