| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.fest.swing.format; |
| 17 |
|
|
| 18 |
|
import static javax.swing.ListSelectionModel.*; |
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
@author |
| 24 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 1 |
|
| 25 |
|
final class SwingIntEnums { |
| 26 |
|
|
| 27 |
|
static final IntEnum SELECTION_MODES = new IntEnum(); |
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 28 |
37
|
static {... |
| 29 |
37
|
SELECTION_MODES.put(SINGLE_SELECTION, "SINGLE_SELECTION") |
| 30 |
|
.put(SINGLE_INTERVAL_SELECTION, "SINGLE_INTERVAL_SELECTION") |
| 31 |
|
.put(MULTIPLE_INTERVAL_SELECTION, "MULTIPLE_INTERVAL_SELECTION"); |
| 32 |
|
} |
| 33 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 34 |
|
private SwingIntEnums() {}... |
| 35 |
|
} |