| 1 |
|
package org.fest.swing.hierarchy; |
| 2 |
|
|
| 3 |
|
import static org.fest.util.Collections.list; |
| 4 |
|
|
| 5 |
|
import java.awt.Component; |
| 6 |
|
import java.awt.Container; |
| 7 |
|
import java.util.List; |
| 8 |
|
|
| 9 |
|
import org.fest.swing.annotation.RunsInCurrentThread; |
| 10 |
|
|
| 11 |
|
|
| 12 |
|
@link |
| 13 |
|
@link |
| 14 |
|
@see |
| 15 |
|
|
| 16 |
|
@author |
| 17 |
|
@author |
| 18 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 1 |
|
| 19 |
|
final class ContainerComponentsQuery { |
| 20 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 21 |
106839
|
@RunsInCurrentThread... |
| 22 |
|
static List<Component> componentsOf(Container container) { |
| 23 |
106839
|
return list(container.getComponents()); |
| 24 |
|
} |
| 25 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 26 |
|
private ContainerComponentsQuery() {}... |
| 27 |
|
} |